any way to suppress table_manager log lines?

42 views
Skip to first unread message

Thomas Schönbeck

unread,
Oct 7, 2019, 10:35:36 AM10/7/19
to lokiproject
loki is spamming log lines, so many in fact that our openshift instance is constantly giving up in trying to display the logs.

is there any way to prevent log lines like this?

level=info ts=2019-10-07T14:28:13.188081898Z caller=table_manager.go:349 msg="creating table" table=index_2557
level=info ts=2019-10-07T14:28:13.188092029Z caller=table_manager.go:349 msg="creating table" table=index_2538
level=info ts=2019-10-07T14:28:13.188101596Z caller=table_manager.go:349 msg="creating table" table=index_2558
level=info ts=2019-10-07T14:28:13.18811134Z caller=table_manager.go:349 msg="creating table" table=index_2562
level=info ts=2019-10-07T14:28:13.18811937Z caller=table_manager.go:349 msg="creating table" table=index_2565
level=info ts=2019-10-07T14:28:13.188127422Z caller=table_manager.go:349 msg="creating table" table=index_2567
level=info ts=2019-10-07T14:28:13.18813535Z caller=table_manager.go:349 msg="creating table" table=index_2539
level=info ts=2019-10-07T14:28:13.188143392Z caller=table_manager.go:349 msg="creating table" table=index_2541
level=info ts=2019-10-07T14:28:13.188152946Z caller=table_manager.go:349 msg="creating table" table=index_2560
level=info ts=2019-10-07T14:28:13.188164778Z caller=table_manager.go:349 msg="creating table" table=index_2576

in my view, at least for my level of understanding right now, these log lines add no value.

Edward Welch

unread,
Oct 7, 2019, 11:08:37 AM10/7/19
to lokiproject
We don't tend to see this log message at high volume like you are seeing? I'm wondering if this is based on a config you have different from ours?

Are there any errors around creating the tables? can you look to see if they are actually getting created?

What are your configs around table manager and retention?

--
You received this message because you are subscribed to the Google Groups "lokiproject" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lokiproject...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lokiproject/2adc3207-e188-47c3-8f34-5690a56aba13%40googlegroups.com.

Thomas Schönbeck

unread,
Oct 7, 2019, 11:49:44 AM10/7/19
to lokiproject
Hi there, thanks for the answer.

to be honest i am not sure what i need to look for.

I guess these tables are not getting created. In fact, since i have not managed to send anything to the loki instance with promtail i am not sure why loki is so busy creating tables.

/tmp/loki $ ls -la /tmp/loki
total 8
drwxr-xr-x    4 root     root            33 Sep 21 15:36 .
drwxrwxrwx    1 root     root            18 Sep 21 15:36 ..
drwxrwsr-x    2 root     10003600      4096 Sep 21 16:23 chunks
drwxrwsr-x    2 root     10003600      4096 Oct  7 12:50 index
/tmp/loki $ ls -la /tmp/loki/chunks
total 20
drwxrwsr-x    2 root     10003600      4096 Sep 21 16:23 .
drwxr-xr-x    4 root     root            33 Sep 21 15:36 ..
-rw-rw-r--    1 10003600 10003600       265 Sep 21 14:58 ZmFrZS81NDZhMzk2NzE3Y2Y3ZjVkOjE2ZDUzY2IyYjExOjE2ZDUzY2IyYjEyOjY2MmFiZDk5
-rw-r--r--    1 10003600 10003600       323 Sep 21 16:23 ZmFrZS84ZDBmZjIyZDY1YWVlZDgwOjE2ZDU0N2JkNjY4OjE2ZDU0N2JkNjY4OmNhNjNkNmIz
-rw-r--r--    1 10003600 10003600       309 Sep 21 16:21 ZmFrZS8zMWU2NmRhNDU1MzBkN2YxOjE2ZDU0N2FlYzA4OjE2ZDU0N2FlYzA4Ojk1Yzc1MTM2
-rw-r--r--    1 10003600 10003600       344 Sep 21 16:18 ZmFrZS9mYjhjMWNiM2EzZWI4YjY3OjE2ZDRmYmZhZGU4OjE2ZDU0N2FlYzA4OjM3YWNkMjE2
/tmp/loki $ ls -la /tmp/loki/index
total 52
drwxrwsr-x    2 root     10003600      4096 Oct  7 12:50 .
drwxr-xr-x    4 root     root            33 Sep 21 15:36 ..
-rw-rw-r--    1 10003600 10003600     65536 Sep 21 16:23 index_2594
-rw-r--r--    1 10003600 10003600     16384 Oct  7 12:50 index_2596
/tmp/loki $


and my loki config:

auth_enabled: false

ingester
:
#   chunk_idle_period: 3m
#   chunk_block_size: 262144
#   chunk_retain_period: 1m
  lifecycler
:
    ring
:
      kvstore
:
        store
: inmemory
      replication_factor
: 1

limits_config
:
  enforce_metric_name
: false
  reject_old_samples
: true
  reject_old_samples_max_age
: 48h
schema_config
:
  configs
:
 
- from: 2018-04-15
    store
: boltdb
    object_store
: filesystem
    schema
: v9
    index
:
      prefix
: index_
      period
: 168h
server
:
  http_listen_port
: 3100
storage_config
:
  boltdb
:
    directory
: /tmp/loki/index
  filesystem
:
    directory
: /tmp/loki/chunks
chunk_store_config
:
  max_look_back_period
: 0
table_manager
:
  retention_deletes_enabled
: true
  retention_period
: 2160h



To unsubscribe from this group and stop receiving emails from it, send an email to lokip...@googlegroups.com.

Marco Pracucci

unread,
Oct 8, 2019, 4:14:03 AM10/8/19
to Thomas Schönbeck, lokiproject
> We don't tend to see this log message at high volume like you are seeing?

Ed, this issue occurs when using boltdb, because the CreateTable() is a noop so every table manager reconcile loop (defaults to 2m) will try to recreate them.

> is there any way to prevent log lines like this?

Tom, as of now, I'm not aware of any way to suppress these logs, but I do agree they're annoying when running Loki with boltdb.

Marco


To unsubscribe from this group and stop receiving emails from it, send an email to lokiproject...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lokiproject/84d0e994-4563-4b02-9161-7ad1191bab1d%40googlegroups.com.

Thomas Schönbeck

unread,
Oct 8, 2019, 7:06:33 AM10/8/19
to lokiproject
Thanks Marco.

let's see if that changes at some point. For now, since i am running a small instance for a prototype, i don't plan on changing to a different storage backend. so i will have to live with the extensive logging of loki.

Brian Candler

unread,
Mar 6, 2020, 2:53:25 PM3/6/20
to lokiproject
I am seeing the same issue with a small local instance of loki, which I've recently upgraded to 1.3.0.  Every 2 minutes it spams the logs: in fact loki itself is generating more logs than the rest of the source devices!

It appears to be creating tables with the same index_XXXX each time, although not always all of them:

root@loki:/var/log# grep loki-linux-amd64 syslog | grep 19:42: | grep "creating table" | wc -l
61
root@loki:/var/log# grep loki-linux-amd64 syslog | grep 19:44: | grep "creating table" | wc -l
68

Setting -log.level=warn is the only workaround I currently have.  I think that pushing these messages down to "debug" level might be better.

Cheers,

Brian.

P.S. Example of one spew:

Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.807745423Z caller=table_manager.go:220 msg="synching tables" expected_tables=100
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808491827Z caller=table_manager.go:363 msg="creating table" table=index_2530
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808563474Z caller=table_manager.go:363 msg="creating table" table=index_2549
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808594246Z caller=table_manager.go:363 msg="creating table" table=index_2554
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808624756Z caller=table_manager.go:363 msg="creating table" table=index_2584
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808654239Z caller=table_manager.go:363 msg="creating table" table=index_2526
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808685498Z caller=table_manager.go:363 msg="creating table" table=index_2548
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808714973Z caller=table_manager.go:363 msg="creating table" table=index_2567
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808745656Z caller=table_manager.go:363 msg="creating table" table=index_2581
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808775198Z caller=table_manager.go:363 msg="creating table" table=index_2573
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808806173Z caller=table_manager.go:363 msg="creating table" table=index_2580
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808924627Z caller=table_manager.go:363 msg="creating table" table=index_2557
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808953787Z caller=table_manager.go:363 msg="creating table" table=index_2562
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.808984762Z caller=table_manager.go:363 msg="creating table" table=index_2558
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809057159Z caller=table_manager.go:363 msg="creating table" table=index_2532
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809088217Z caller=table_manager.go:363 msg="creating table" table=index_2536
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809117834Z caller=table_manager.go:363 msg="creating table" table=index_2538
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809146986Z caller=table_manager.go:363 msg="creating table" table=index_2553
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809176184Z caller=table_manager.go:363 msg="creating table" table=index_2561
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809205524Z caller=table_manager.go:363 msg="creating table" table=index_2563
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809234811Z caller=table_manager.go:363 msg="creating table" table=index_2572
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809264001Z caller=table_manager.go:363 msg="creating table" table=index_2520
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809301913Z caller=table_manager.go:363 msg="creating table" table=index_2521
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809331973Z caller=table_manager.go:363 msg="creating table" table=index_2522
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.80936123Z caller=table_manager.go:363 msg="creating table" table=index_2540
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.80939066Z caller=table_manager.go:363 msg="creating table" table=index_2550
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809420278Z caller=table_manager.go:363 msg="creating table" table=index_2571
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809449243Z caller=table_manager.go:363 msg="creating table" table=index_2579
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809478695Z caller=table_manager.go:363 msg="creating table" table=index_2583
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809507937Z caller=table_manager.go:363 msg="creating table" table=index_2537
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.80953763Z caller=table_manager.go:363 msg="creating table" table=index_2551
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809568364Z caller=table_manager.go:363 msg="creating table" table=index_2544
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809600217Z caller=table_manager.go:363 msg="creating table" table=index_2559
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809629827Z caller=table_manager.go:363 msg="creating table" table=index_2565
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809659579Z caller=table_manager.go:363 msg="creating table" table=index_2587
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809689466Z caller=table_manager.go:363 msg="creating table" table=index_2531
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809718776Z caller=table_manager.go:363 msg="creating table" table=index_2546
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809748334Z caller=table_manager.go:363 msg="creating table" table=index_2552
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809778176Z caller=table_manager.go:363 msg="creating table" table=index_2555
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809807793Z caller=table_manager.go:363 msg="creating table" table=index_2523
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809837118Z caller=table_manager.go:363 msg="creating table" table=index_2524
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809866218Z caller=table_manager.go:363 msg="creating table" table=index_2545
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809896061Z caller=table_manager.go:363 msg="creating table" table=index_2568
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809925483Z caller=table_manager.go:363 msg="creating table" table=index_2586
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.80995651Z caller=table_manager.go:363 msg="creating table" table=index_2535
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.809985865Z caller=table_manager.go:363 msg="creating table" table=index_2564
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.81001585Z caller=table_manager.go:363 msg="creating table" table=index_2578
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810046585Z caller=table_manager.go:363 msg="creating table" table=index_2585
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810076817Z caller=table_manager.go:363 msg="creating table" table=index_2576
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810110035Z caller=table_manager.go:363 msg="creating table" table=index_2582
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810141414Z caller=table_manager.go:363 msg="creating table" table=index_2519
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810171384Z caller=table_manager.go:363 msg="creating table" table=index_2541
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810201744Z caller=table_manager.go:363 msg="creating table" table=index_2574
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810231609Z caller=table_manager.go:363 msg="creating table" table=index_2575
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810261376Z caller=table_manager.go:363 msg="creating table" table=index_2566
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810290596Z caller=table_manager.go:363 msg="creating table" table=index_2570
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810320626Z caller=table_manager.go:363 msg="creating table" table=index_2569
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810370141Z caller=table_manager.go:363 msg="creating table" table=index_2577
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810400043Z caller=table_manager.go:363 msg="creating table" table=index_2528
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810431371Z caller=table_manager.go:363 msg="creating table" table=index_2542
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810461228Z caller=table_manager.go:363 msg="creating table" table=index_2543
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810490485Z caller=table_manager.go:363 msg="creating table" table=index_2560
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.81051981Z caller=table_manager.go:363 msg="creating table" table=index_2547
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810550845Z caller=table_manager.go:363 msg="creating table" table=index_2588
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810589672Z caller=table_manager.go:363 msg="creating table" table=index_2589
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.81061995Z caller=table_manager.go:363 msg="creating table" table=index_2525
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810649597Z caller=table_manager.go:363 msg="creating table" table=index_2527
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810679192Z caller=table_manager.go:363 msg="creating table" table=index_2533
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810708569Z caller=table_manager.go:363 msg="creating table" table=index_2539
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810761362Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2595 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810816846Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2609 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810865049Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2593 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810913528Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2612 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.810963658Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2596 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811011831Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2592 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811059148Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2600 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811108475Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2605 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811156505Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2599 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811206177Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2603 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811270797Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2618 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811321002Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2591 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811405309Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2597 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811458296Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2617 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811507331Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2598 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811556306Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2606 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811604785Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2608 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811652635Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2610 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.81170017Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2607 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811748072Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2602 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811795555Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2604 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811844117Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2611 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811892462Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2614 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811940401Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2594 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.811989219Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2601 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.812036483Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2615 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.812110748Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2590 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.81215901Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2613 read=0 write=0
Mar  6 19:44:17 loki loki-linux-amd64[14433]: level=info ts=2020-03-06T19:44:17.812206358Z caller=table_manager.go:409 msg="provisioned throughput on table, skipping" table=index_2616 read=0 write=0

Cyril Tovena

unread,
Mar 9, 2020, 12:25:13 PM3/9/20
to Brian Candler, lokiproject
Hey Brian,

I created an issue in the Loki repo. https://github.com/grafana/loki/issues/1786 so we can improve this.

Thanks for reporting it.

--
You received this message because you are subscribed to the Google Groups "lokiproject" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lokiproject...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lokiproject/72a31cad-935c-46ec-bfec-8047f461c3c8%40googlegroups.com.
Reply all
Reply to author
Forward
0 new messages