Advertisement
thisisvld

Untitled

Nov 8th, 2018
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.26 KB | None | 0 0
  1. vld@vld:~$ parallel-ssh -iH "$hosts" 'echo "show create table fazze_youtube_parser.channel;" | clickhouse-client && echo "show create table fazze_youtube_parser.video;" | clickhouse-client && echo "show create table fazze_youtube_parser.url;" | clickhouse-client && echo "show create table fazze_youtube_parser.url_dirty;" | clickhouse-client && echo "show create table fazze_youtube_parser_shard.channel;" | clickhouse-client && echo "show create table fazze_youtube_parser_shard.video;" | clickhouse-client && echo "show create table fazze_youtube_parser_shard.url;" | clickhouse-client && echo "show create table fazze_youtube_parser_shard.url_dirty;" | clickhouse-client && echo "show create table fazze_youtube_parser_buffer.channel;" | clickhouse-client && echo "show create table fazze_youtube_parser_buffer.video;" | clickhouse-client && echo "show create table fazze_youtube_parser_buffer.url;" | clickhouse-client && echo "show create table fazze_youtube_parser_buffer.url_dirty;" | clickhouse-client'
  2. [1] 16:04:14 [SUCCESS] f-clickhouse-n2
  3. CREATE TABLE fazze_youtube_parser.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, channel, rand())
  4. CREATE TABLE fazze_youtube_parser.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, video, rand())
  5. CREATE TABLE fazze_youtube_parser.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url, rand())
  6. CREATE TABLE fazze_youtube_parser.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url_dirty, rand())
  7. CREATE TABLE fazze_youtube_parser_shard.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/channel\', \'{replica}\', created_at_date, (channel_id, name), 8192)
  8. CREATE TABLE fazze_youtube_parser_shard.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/video\', \'{replica}\', created_at_date, (video_id, name), 8192)
  9. CREATE TABLE fazze_youtube_parser_shard.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url\', \'{replica}\', created_at_date, (short_url, video_id), 8192)
  10. CREATE TABLE fazze_youtube_parser_shard.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url_dirty\', \'{replica}\', created_at_date, (durl_url, video_id), 8192)
  11. CREATE TABLE fazze_youtube_parser_buffer.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, channel, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  12. CREATE TABLE fazze_youtube_parser_buffer.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, video, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  13. CREATE TABLE fazze_youtube_parser_buffer.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  14. CREATE TABLE fazze_youtube_parser_buffer.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url_dirty, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  15. [2] 16:04:14 [SUCCESS] f-clickhouse-n4
  16. CREATE TABLE fazze_youtube_parser.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, channel, rand())
  17. CREATE TABLE fazze_youtube_parser.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, video, rand())
  18. CREATE TABLE fazze_youtube_parser.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url, rand())
  19. CREATE TABLE fazze_youtube_parser.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url_dirty, rand())
  20. CREATE TABLE fazze_youtube_parser_shard.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/channel\', \'{replica}\', created_at_date, (channel_id, name), 8192)
  21. CREATE TABLE fazze_youtube_parser_shard.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/video\', \'{replica}\', created_at_date, (video_id, name), 8192)
  22. CREATE TABLE fazze_youtube_parser_shard.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url\', \'{replica}\', created_at_date, (short_url, video_id), 8192)
  23. CREATE TABLE fazze_youtube_parser_shard.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url_dirty\', \'{replica}\', created_at_date, (durl_url, video_id), 8192)
  24. CREATE TABLE fazze_youtube_parser_buffer.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, channel, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  25. CREATE TABLE fazze_youtube_parser_buffer.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, video, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  26. CREATE TABLE fazze_youtube_parser_buffer.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  27. CREATE TABLE fazze_youtube_parser_buffer.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url_dirty, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  28. [3] 16:04:14 [SUCCESS] f-clickhouse-n3
  29. CREATE TABLE fazze_youtube_parser.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, channel, rand())
  30. CREATE TABLE fazze_youtube_parser.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, video, rand())
  31. CREATE TABLE fazze_youtube_parser.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url, rand())
  32. CREATE TABLE fazze_youtube_parser.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url_dirty, rand())
  33. CREATE TABLE fazze_youtube_parser_shard.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/channel\', \'{replica}\', created_at_date, (channel_id, name), 8192)
  34. CREATE TABLE fazze_youtube_parser_shard.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/video\', \'{replica}\', created_at_date, (video_id, name), 8192)
  35. CREATE TABLE fazze_youtube_parser_shard.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url\', \'{replica}\', created_at_date, (short_url, video_id), 8192)
  36. CREATE TABLE fazze_youtube_parser_shard.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url_dirty\', \'{replica}\', created_at_date, (durl_url, video_id), 8192)
  37. CREATE TABLE fazze_youtube_parser_buffer.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, channel, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  38. CREATE TABLE fazze_youtube_parser_buffer.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, video, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  39. CREATE TABLE fazze_youtube_parser_buffer.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  40. CREATE TABLE fazze_youtube_parser_buffer.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url_dirty, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  41. [4] 16:04:15 [SUCCESS] f-clickhouse-n1
  42. CREATE TABLE fazze_youtube_parser.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, channel, rand())
  43. CREATE TABLE fazze_youtube_parser.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, video, rand())
  44. CREATE TABLE fazze_youtube_parser.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url, rand())
  45. CREATE TABLE fazze_youtube_parser.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url_dirty, rand())
  46. CREATE TABLE fazze_youtube_parser_shard.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/channel\', \'{replica}\', created_at_date, (channel_id, name), 8192)
  47. CREATE TABLE fazze_youtube_parser_shard.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/video\', \'{replica}\', created_at_date, (video_id, name), 8192)
  48. CREATE TABLE fazze_youtube_parser_shard.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url\', \'{replica}\', created_at_date, (short_url, video_id), 8192)
  49. CREATE TABLE fazze_youtube_parser_shard.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url_dirty\', \'{replica}\', created_at_date, (durl_url, video_id), 8192)
  50. CREATE TABLE fazze_youtube_parser_buffer.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, channel, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  51. CREATE TABLE fazze_youtube_parser_buffer.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, video, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  52. CREATE TABLE fazze_youtube_parser_buffer.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  53. CREATE TABLE fazze_youtube_parser_buffer.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url_dirty, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  54. [5] 16:04:15 [SUCCESS] f-clickhouse-n5
  55. CREATE TABLE fazze_youtube_parser.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, channel, rand())
  56. CREATE TABLE fazze_youtube_parser.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, video, rand())
  57. CREATE TABLE fazze_youtube_parser.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url, rand())
  58. CREATE TABLE fazze_youtube_parser.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url_dirty, rand())
  59. CREATE TABLE fazze_youtube_parser_shard.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/channel\', \'{replica}\', created_at_date, (channel_id, name), 8192)
  60. CREATE TABLE fazze_youtube_parser_shard.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/video\', \'{replica}\', created_at_date, (video_id, name), 8192)
  61. CREATE TABLE fazze_youtube_parser_shard.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url\', \'{replica}\', created_at_date, (short_url, video_id), 8192)
  62. CREATE TABLE fazze_youtube_parser_shard.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url_dirty\', \'{replica}\', created_at_date, (durl_url, video_id), 8192)
  63. CREATE TABLE fazze_youtube_parser_buffer.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, channel, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  64. CREATE TABLE fazze_youtube_parser_buffer.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, video, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  65. CREATE TABLE fazze_youtube_parser_buffer.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  66. CREATE TABLE fazze_youtube_parser_buffer.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url_dirty, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  67. [6] 16:04:15 [SUCCESS] f-clickhouse-n6
  68. CREATE TABLE fazze_youtube_parser.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, channel, rand())
  69. CREATE TABLE fazze_youtube_parser.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, video, rand())
  70. CREATE TABLE fazze_youtube_parser.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url, rand())
  71. CREATE TABLE fazze_youtube_parser.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Distributed(fornex_cluster, fazze_youtube_parser_buffer, url_dirty, rand())
  72. CREATE TABLE fazze_youtube_parser_shard.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/channel\', \'{replica}\', created_at_date, (channel_id, name), 8192)
  73. CREATE TABLE fazze_youtube_parser_shard.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/video\', \'{replica}\', created_at_date, (video_id, name), 8192)
  74. CREATE TABLE fazze_youtube_parser_shard.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url\', \'{replica}\', created_at_date, (short_url, video_id), 8192)
  75. CREATE TABLE fazze_youtube_parser_shard.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/fazze_youtube_parser_shard/url_dirty\', \'{replica}\', created_at_date, (durl_url, video_id), 8192)
  76. CREATE TABLE fazze_youtube_parser_buffer.channel ( channel_id String, name String, description String, image String, country String, subscribers UInt64, views UInt64, videos UInt64, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, channel, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  77. CREATE TABLE fazze_youtube_parser_buffer.video ( video_id String, channel_id String, name String, description String, category String, likes UInt64, dislikes UInt64, views UInt64, publication_date Date, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, video, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  78. CREATE TABLE fazze_youtube_parser_buffer.url ( channel_id String, video_id String, short_url String, final_url String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
  79. CREATE TABLE fazze_youtube_parser_buffer.url_dirty ( durl_url String, video_id String, created_at_date Date, created_at_time DateTime) ENGINE = Buffer(fazze_youtube_parser_shard, url_dirty, 16, 10, 100, 10000, 1000000, 10000000, 100000000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement