You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by GitBox <gi...@apache.org> on 2022/10/06 14:46:48 UTC

[GitHub] [incubator-seatunnel] lizu18xz opened a new issue, #3010: [Feature][seatunnel-connector-flink-clickhouse] How to use clickhouse local

lizu18xz opened a new issue, #3010:
URL: https://github.com/apache/incubator-seatunnel/issues/3010

   ### Search before asking
   
   - [X] I had searched in the [feature](https://github.com/apache/incubator-seatunnel/issues?q=is%3Aissue+label%3A%22Feature%22) and found no similar feature requirement.
   
   
   ### Description
   
   How to use clickhouse local ?   --path  , The parameters in the code are not seen on the official website https://clickhouse.com/docs/zh/operations/utilities/clickhouse-local/
   
   
   Is there a more detailed introduction?
   
   
   
   
   ### Usage Scenario
   
   _No response_
   
   ### Related issues
   
   _No response_
   
   ### Are you willing to submit a PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] Hisoka-X closed issue #3010: [Feature][seatunnel-connector-flink-clickhouse] How to use clickhouse local

Posted by GitBox <gi...@apache.org>.
Hisoka-X closed issue #3010: [Feature][seatunnel-connector-flink-clickhouse] How to use clickhouse local
URL: https://github.com/apache/incubator-seatunnel/issues/3010


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] lizu18xz commented on issue #3010: [Feature][seatunnel-connector-flink-clickhouse] How to use clickhouse local

Posted by GitBox <gi...@apache.org>.
lizu18xz commented on issue #3010:
URL: https://github.com/apache/incubator-seatunnel/issues/3010#issuecomment-1270313859

   ![image](https://user-images.githubusercontent.com/20568293/194360386-4219b237-64c7-4243-894c-6a7cb0f88d46.png)
   
   Which version is used?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] Hisoka-X commented on issue #3010: [Feature][seatunnel-connector-flink-clickhouse] How to use clickhouse local

Posted by GitBox <gi...@apache.org>.
Hisoka-X commented on issue #3010:
URL: https://github.com/apache/incubator-seatunnel/issues/3010#issuecomment-1270293721

   <img width="1046" alt="image" src="https://user-images.githubusercontent.com/32387433/194357552-efde108d-a64a-4f34-8a25-df677cdd90d1.png">
   Please use help command to get all config with clickhouse-local.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] ashulin commented on issue #3010: [Feature][seatunnel-connector-flink-clickhouse] How to use clickhouse local

Posted by GitBox <gi...@apache.org>.
ashulin commented on issue #3010:
URL: https://github.com/apache/incubator-seatunnel/issues/3010#issuecomment-1270239956

   @Hisoka-X CC


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] lizu18xz commented on issue #3010: [Feature][seatunnel-connector-flink-clickhouse] How to use clickhouse local

Posted by GitBox <gi...@apache.org>.
lizu18xz commented on issue #3010:
URL: https://github.com/apache/incubator-seatunnel/issues/3010#issuecomment-1272234669

   > 
   
   21.7.5.29  ,  I'll try upgrading


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] lizu18xz commented on issue #3010: [Feature][seatunnel-connector-flink-clickhouse] How to use clickhouse local

Posted by GitBox <gi...@apache.org>.
lizu18xz commented on issue #3010:
URL: https://github.com/apache/incubator-seatunnel/issues/3010#issuecomment-1272245216

   
   21.7.5.29 ,I used it wrong before ,needs to be specified like this
   
    -- --path /clickhouse/ch9-data/local-data
   
   https://cloud.tencent.com/developer/article/1828819  
   
   ```
   % echo -e "1\n2\n3"|clickhouse-local -S "id Int64" -N "tmp_table" -q "CREATE TABLE test_batch (id Int64,EventTime Date) ENGINE = MergeTree() PARTITION BY toYYYYMM(EventTime) ORDER BY id;INSERT INTO TABLE test_batch SELECT id,'2021-05-05' FROM tmp_table;" -- --path /clickhouse/ch9-data/local-data
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] Hisoka-X commented on issue #3010: [Feature][seatunnel-connector-flink-clickhouse] How to use clickhouse local

Posted by GitBox <gi...@apache.org>.
Hisoka-X commented on issue #3010:
URL: https://github.com/apache/incubator-seatunnel/issues/3010#issuecomment-1272209557

   > ![image](https://user-images.githubusercontent.com/20568293/194360386-4219b237-64c7-4243-894c-6a7cb0f88d46.png)
   > 
   > Which version is used?
   
   22.3.1.1, how about yours?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] Hisoka-X commented on issue #3010: [Feature][seatunnel-connector-flink-clickhouse] How to use clickhouse local

Posted by GitBox <gi...@apache.org>.
Hisoka-X commented on issue #3010:
URL: https://github.com/apache/incubator-seatunnel/issues/3010#issuecomment-1272246037

   Yep


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org