This is an automated email from the ASF dual-hosted git repository.

hello-stephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new efad8d63bcd [fix](script) Replace clickbench new data link (#63187)
efad8d63bcd is described below

commit efad8d63bcd9aa77269eb3dd92c6cab769b107db
Author: zclllyybb <[email protected]>
AuthorDate: Wed May 13 10:07:20 2026 +0800

    [fix](script) Replace clickbench new data link (#63187)
    
    because the old one is broken.
---
 tools/clickbench-tools/load-clickbench-data.sh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tools/clickbench-tools/load-clickbench-data.sh 
b/tools/clickbench-tools/load-clickbench-data.sh
index 4f08671a812..87522dff0f3 100755
--- a/tools/clickbench-tools/load-clickbench-data.sh
+++ b/tools/clickbench-tools/load-clickbench-data.sh
@@ -126,9 +126,9 @@ function load() {
     need_download=false
     cd $DATA_DIR
     for i in $(seq 0 9); do
-        if [ ! -f "$DATA_DIR/hits_split${i}" ]; then
-            echo "will download hits_split${i} to $DATA_DIR"
-            wget --continue 
"https://doris-test-data.oss-cn-hongkong.aliyuncs.com/ClickBench/hits_split${i}";
 &
+        if [ ! -f "$DATA_DIR/hits_split${i}.tsv" ]; then
+            echo "will download hits_split${i}.tsv to $DATA_DIR"
+            wget --continue 
"https://bench-dataset.oss-cn-beijing.aliyuncs.com/clickhouse/hits_compatible/hits_split${i}.tsv";
 &
             PID=$!
             wget_pids[${#wget_pids[@]}]=$PID
         fi
@@ -145,14 +145,14 @@ function load() {
         if [[ -z ${TXN_ID} ]]; then
             curl --location-trusted \
                 -u $USER:$PASSWORD \
-                -T "$DATA_DIR/hits_split${i}" \
+                -T "$DATA_DIR/hits_split${i}.tsv" \
                 -H "Expect: 100-continue" \
                 -H 
"columns:WatchID,JavaEnable,Title,GoodEvent,EventTime,EventDate,CounterID,ClientIP,RegionID,UserID,CounterClass,OS,UserAgent,URL,Referer,IsRefresh,RefererCategoryID,RefererRegionID,URLCategoryID,URLRegionID,ResolutionWidth,ResolutionHeight,ResolutionDepth,FlashMajor,FlashMinor,FlashMinor2,NetMajor,NetMinor,UserAgentMajor,UserAgentMinor,CookieEnable,JavascriptEnable,IsMobile,MobilePhone,MobilePhoneModel,Params,IPNetworkID,TraficSourceID,SearchEngineID,SearchPhrase,AdvEn
 [...]
                 http://$FE_HOST:$FE_HTTP_PORT/api/$DB/hits/_stream_load
         else
             curl --location-trusted \
                 -u $USER:$PASSWORD \
-                -T "$DATA_DIR/hits_split${i}" \
+                -T "$DATA_DIR/hits_split${i}.tsv" \
                 -H "Expect: 100-continue" \
                 -H "label:${TXN_ID}_${i}" \
                 -H 
"columns:WatchID,JavaEnable,Title,GoodEvent,EventTime,EventDate,CounterID,ClientIP,RegionID,UserID,CounterClass,OS,UserAgent,URL,Referer,IsRefresh,RefererCategoryID,RefererRegionID,URLCategoryID,URLRegionID,ResolutionWidth,ResolutionHeight,ResolutionDepth,FlashMajor,FlashMinor,FlashMinor2,NetMajor,NetMinor,UserAgentMajor,UserAgentMinor,CookieEnable,JavascriptEnable,IsMobile,MobilePhone,MobilePhoneModel,Params,IPNetworkID,TraficSourceID,SearchEngineID,SearchPhrase,AdvEn
 [...]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to