groonga-query-log 1.7.7 → 1.7.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -4
  3. data/doc/text/check-crash.md +152 -0
  4. data/doc/text/news.md +29 -0
  5. data/groonga-query-log.gemspec +4 -2
  6. data/lib/groonga-query-log/command/check-crash.rb +233 -74
  7. data/lib/groonga-query-log/command/show-running-queries.rb +1 -1
  8. data/lib/groonga-query-log/server-verifier.rb +11 -3
  9. data/lib/groonga-query-log/version.rb +2 -2
  10. data/test/command/test-check-crash.rb +584 -0
  11. data/test/command/test-format-regression-test-logs.rb +4 -4
  12. data/test/fixtures/check-crash/process/crash.log +29 -0
  13. data/test/fixtures/check-crash/process/leak.log +27 -0
  14. data/test/fixtures/check-crash/process/normal.log +27 -0
  15. data/test/fixtures/check-crash/query/column_create/flushed/only-opened.log +8 -0
  16. data/test/fixtures/check-crash/query/column_create/flushed/recursive-yes.log +8 -0
  17. data/test/fixtures/check-crash/query/column_create/flushed/target-name-recursive-dependent.log +8 -0
  18. data/test/fixtures/check-crash/query/column_create/unfinished.log +2 -0
  19. data/test/fixtures/check-crash/query/column_create/unflushed/no-flush.log +3 -0
  20. data/test/fixtures/check-crash/query/column_create/unflushed/only-opened.log +7 -0
  21. data/test/fixtures/check-crash/query/column_create/unflushed/recursive-no.log +11 -0
  22. data/test/fixtures/check-crash/query/column_create/unflushed/target-name-recursive-no.log +7 -0
  23. data/test/fixtures/check-crash/query/column_create/unflushed/target-name-recursive-yes.log +7 -0
  24. data/test/fixtures/check-crash/query/delete/flushed/only-opened.log +9 -0
  25. data/test/fixtures/check-crash/query/delete/flushed/recursive-yes.log +8 -0
  26. data/test/fixtures/check-crash/query/delete/flushed/target-name-recursive-dependent.log +8 -0
  27. data/test/fixtures/check-crash/query/delete/unfinished.log +3 -0
  28. data/test/fixtures/check-crash/query/delete/unflushed/no-flush.log +4 -0
  29. data/test/fixtures/check-crash/query/delete/unflushed/only-opened.log +8 -0
  30. data/test/fixtures/check-crash/query/delete/unflushed/recursive-no.log +12 -0
  31. data/test/fixtures/check-crash/query/delete/unflushed/target-name-recursive-no.log +8 -0
  32. data/test/fixtures/check-crash/query/delete/unflushed/target-name-recursive-yes.log +8 -0
  33. data/test/fixtures/check-crash/query/load/flushed/columns-only-opened.log +9 -0
  34. data/test/fixtures/check-crash/query/load/flushed/columns-target-name-recursive-dependent.log +9 -0
  35. data/test/fixtures/check-crash/query/load/flushed/only-opened.log +9 -0
  36. data/test/fixtures/check-crash/query/load/flushed/recursive-yes.log +8 -0
  37. data/test/fixtures/check-crash/query/load/flushed/target-name-recursive-dependent.log +8 -0
  38. data/test/fixtures/check-crash/query/load/unfinished.log +3 -0
  39. data/test/fixtures/check-crash/query/load/unflushed/columns-only-opened.log +8 -0
  40. data/test/fixtures/check-crash/query/load/unflushed/columns-target-name-recursive-dependent.log +8 -0
  41. data/test/fixtures/check-crash/query/load/unflushed/no-flush.log +4 -0
  42. data/test/fixtures/check-crash/query/load/unflushed/only-opened.log +8 -0
  43. data/test/fixtures/check-crash/query/load/unflushed/recursive-no.log +12 -0
  44. data/test/fixtures/check-crash/query/load/unflushed/target-name-recursive-no.log +8 -0
  45. data/test/fixtures/check-crash/query/load/unflushed/target-name-recursive-yes.log +8 -0
  46. data/test/fixtures/check-crash/query/select/flushed/only-opened.log +12 -0
  47. data/test/fixtures/check-crash/query/select/flushed/recursive-yes.log +11 -0
  48. data/test/fixtures/check-crash/query/select/flushed/target-name-recursive-dependent.log +11 -0
  49. data/test/fixtures/check-crash/query/select/unfinished.log +5 -0
  50. data/test/fixtures/check-crash/query/select/unflushed/no-flush.log +6 -0
  51. data/test/fixtures/check-crash/query/select/unflushed/no-load.log +5 -0
  52. data/test/fixtures/check-crash/query/select/unflushed/only-opened.log +10 -0
  53. data/test/fixtures/check-crash/query/select/unflushed/recursive-no.log +14 -0
  54. data/test/fixtures/check-crash/query/select/unflushed/target-name-recursive-no.log +10 -0
  55. data/test/fixtures/check-crash/query/select/unflushed/target-name-recursive-yes.log +10 -0
  56. data/test/fixtures/check-crash/query/table_create/flushed/only-opened.log +8 -0
  57. data/test/fixtures/check-crash/query/table_create/flushed/recursive-yes.log +7 -0
  58. data/test/fixtures/check-crash/query/table_create/flushed/target-name-recursive-dependent.log +7 -0
  59. data/test/fixtures/check-crash/query/table_create/unflushed/no-flush.log +4 -0
  60. data/test/fixtures/check-crash/query/table_create/unflushed/only-opened.log +7 -0
  61. data/test/fixtures/check-crash/query/table_create/unflushed/recursive-no.log +11 -0
  62. data/test/fixtures/check-crash/query/table_create/unflushed/target-name-recursive-no.log +7 -0
  63. data/test/fixtures/check-crash/query/table_create/unflushed/target-name-recursive-yes.log +7 -0
  64. data/test/fixtures/check-crash/query/truncate/flushed/only-opened.log +8 -0
  65. data/test/fixtures/check-crash/query/truncate/flushed/recursive-yes.log +7 -0
  66. data/test/fixtures/check-crash/query/truncate/flushed/target-name-recursive-dependent.log +7 -0
  67. data/test/fixtures/check-crash/query/truncate/unflushed/no-flush.log +3 -0
  68. data/test/fixtures/check-crash/query/truncate/unflushed/only-opened.log +7 -0
  69. data/test/fixtures/check-crash/query/truncate/unflushed/recursive-no.log +11 -0
  70. data/test/fixtures/check-crash/query/truncate/unflushed/target-name-recursive-no.log +7 -0
  71. data/test/fixtures/check-crash/query/truncate/unflushed/target-name-recursive-yes.log +7 -0
  72. data/test/fixtures/reporter/json-stream.expected +1 -1
  73. data/test/fixtures/reporter/json.expected +1 -1
  74. data/test/helper.rb +1 -2
  75. metadata +160 -11
  76. data/test/fixtures/run-regression-test/results/query.log.log +0 -0
@@ -0,0 +1,27 @@
1
+ 2000-01-01 00:00:00.000000|n| grn_init: <99.9.9>
2
+ 2000-01-01 00:00:00.000000|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
3
+ 2000-01-01 00:00:00.000000|n| spec:2:update:Object:32(type):8
4
+ 2000-01-01 00:00:00.000000|n| spec:3:update:Bool:32(type):1
5
+ 2000-01-01 00:00:00.000000|n| spec:4:update:Int8:32(type):1
6
+ 2000-01-01 00:00:00.000000|n| spec:5:update:UInt8:32(type):1
7
+ 2000-01-01 00:00:00.000000|n| spec:6:update:Int16:32(type):2
8
+ 2000-01-01 00:00:00.000000|n| spec:7:update:UInt16:32(type):2
9
+ 2000-01-01 00:00:00.000000|n| spec:8:update:Int32:32(type):4
10
+ 2000-01-01 00:00:00.000000|n| spec:9:update:UInt32:32(type):4
11
+ 2000-01-01 00:00:00.000000|n| spec:10:update:Int64:32(type):8
12
+ 2000-01-01 00:00:00.000000|n| spec:11:update:UInt64:32(type):8
13
+ 2000-01-01 00:00:00.000000|n| spec:12:update:Float:32(type):8
14
+ 2000-01-01 00:00:00.000000|n| spec:13:update:Time:32(type):8
15
+ 2000-01-01 00:00:00.000000|n| spec:14:update:ShortText:32(type):4096
16
+ 2000-01-01 00:00:00.000000|n| spec:15:update:Text:32(type):65536
17
+ 2000-01-01 00:00:00.000000|n| spec:16:update:LongText:32(type):2147483648
18
+ 2000-01-01 00:00:00.000000|n| spec:17:update:TokyoGeoPoint:32(type):8
19
+ 2000-01-01 00:00:00.000000|n| spec:18:update:WGS84GeoPoint:32(type):8
20
+ 2000-01-01 00:00:00.000000|n| spec:19:update:Float32:32(type):4
21
+ 2000-01-01 00:00:00.000000|n| spec:20:update:BFloat16:32(type):2
22
+ 2000-01-01 00:00:00.000000|n| spec:21:update:ShortBinary:32(type):4096
23
+ 2000-01-01 00:00:00.000000|n| spec:22:update:Binary:32(type):65536
24
+ 2000-01-01 00:00:00.000000|n| spec:23:update:LongBinary:32(type):2147483648
25
+ 2000-01-01 00:00:00.000000|n| spec:24:update:JSON:32(type):2147483648
26
+ 2000-01-01 00:00:00.000000|n| spec:64:update:TokenMecab:33(proc):1
27
+ 2000-01-01 00:00:10.000000|n| grn_fin (3)
@@ -0,0 +1,27 @@
1
+ 2000-01-01 00:00:00.000000|n| grn_init: <99.9.9>
2
+ 2000-01-01 00:00:00.000000|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
3
+ 2000-01-01 00:00:00.000000|n| spec:2:update:Object:32(type):8
4
+ 2000-01-01 00:00:00.000000|n| spec:3:update:Bool:32(type):1
5
+ 2000-01-01 00:00:00.000000|n| spec:4:update:Int8:32(type):1
6
+ 2000-01-01 00:00:00.000000|n| spec:5:update:UInt8:32(type):1
7
+ 2000-01-01 00:00:00.000000|n| spec:6:update:Int16:32(type):2
8
+ 2000-01-01 00:00:00.000000|n| spec:7:update:UInt16:32(type):2
9
+ 2000-01-01 00:00:00.000000|n| spec:8:update:Int32:32(type):4
10
+ 2000-01-01 00:00:00.000000|n| spec:9:update:UInt32:32(type):4
11
+ 2000-01-01 00:00:00.000000|n| spec:10:update:Int64:32(type):8
12
+ 2000-01-01 00:00:00.000000|n| spec:11:update:UInt64:32(type):8
13
+ 2000-01-01 00:00:00.000000|n| spec:12:update:Float:32(type):8
14
+ 2000-01-01 00:00:00.000000|n| spec:13:update:Time:32(type):8
15
+ 2000-01-01 00:00:00.000000|n| spec:14:update:ShortText:32(type):4096
16
+ 2000-01-01 00:00:00.000000|n| spec:15:update:Text:32(type):65536
17
+ 2000-01-01 00:00:00.000000|n| spec:16:update:LongText:32(type):2147483648
18
+ 2000-01-01 00:00:00.000000|n| spec:17:update:TokyoGeoPoint:32(type):8
19
+ 2000-01-01 00:00:00.000000|n| spec:18:update:WGS84GeoPoint:32(type):8
20
+ 2000-01-01 00:00:00.000000|n| spec:19:update:Float32:32(type):4
21
+ 2000-01-01 00:00:00.000000|n| spec:20:update:BFloat16:32(type):2
22
+ 2000-01-01 00:00:00.000000|n| spec:21:update:ShortBinary:32(type):4096
23
+ 2000-01-01 00:00:00.000000|n| spec:22:update:Binary:32(type):65536
24
+ 2000-01-01 00:00:00.000000|n| spec:23:update:LongBinary:32(type):2147483648
25
+ 2000-01-01 00:00:00.000000|n| spec:24:update:JSON:32(type):2147483648
26
+ 2000-01-01 00:00:00.000000|n| spec:64:update:TokenMecab:33(proc):1
27
+ 2000-01-01 00:00:10.000000|n| grn_fin (0)
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data.count&recursive=dependent
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,2 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Terms&name=blog_title&type=Site&source=title&flags=COLUMN_INDEX%7cWITH_POSITION
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
@@ -0,0 +1,3 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,11 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
11
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data.count&recursive=no
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data.count&recursive=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,9 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,3 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
@@ -0,0 +1,4 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,12 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
11
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
12
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=no
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=yes
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,9 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data&columns=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][11]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,9 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data&columns=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,9 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][11]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,3 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][11]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data&columns=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][11]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data&columns=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,4 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,12 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
11
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
12
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=no
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=yes
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,12 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2c+count&load_values=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
5
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
6
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
11
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
12
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,11 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
5
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
6
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
11
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,11 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
5
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
6
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
11
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,5 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
5
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
@@ -0,0 +1,6 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
5
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
6
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,5 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(10)
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(10)
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
5
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,10 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
5
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
6
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,14 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
5
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
6
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
11
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
12
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
13
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
14
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,10 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
5
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
6
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=no
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,10 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
4
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
5
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
6
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=yes
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,4 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,11 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
9
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
10
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
11
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=no
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,8 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
8
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,3 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
@@ -0,0 +1,7 @@
1
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
2
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
3
+ 2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
4
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
5
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
6
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
7
+ 2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0