export default function DistributionsAndPackaging()

in src/pages/ecosystem/data-loading/index.tsx [8:45]


export default function DistributionsAndPackaging() {
    return (
        <EcomsystemLayout>
            <div className="container mx-auto flex flex-col flex-wrap items-center justify-center mb-[5.5rem] lg:flex-row">
                <CollapseBox
                    title="Doris Streamloader"
                    description="A robust, high-performance and user-friendly alternative to the traditional curl-based stream load."
                    characteristic={[
                        'Split data files automatically and perform parallel loading',
                        'Support multiple files and directories load with one shot',
                        'Support path traversal when the target is a directory',
                        'Resume loading from previous failures and cancellations',
                        'Retry automatically when failure',
                    ]}
                    rightContent={
                        <img src={require(`@site/static/images/ecomsystem/doris-stream-loader.png`).default} alt="" />
                    }
                    moreLink={
                        <>
                            <ExternalLink
                                href="https://doris.apache.org/download#doris-ecosystem"
                                label="Download"
                                linkIcon={<ExternalLinkArrowIcon />}
                            ></ExternalLink>

                            <ExternalLink
                                href="https://doris.apache.org/docs/ecosystem/doris-streamloader"
                                className="sub-btn"
                                label="Docs"
                                linkIcon={<ExternalLinkArrowIcon />}
                            ></ExternalLink>
                        </>
                    }
                />
            </div>
        </EcomsystemLayout>
    );
}