Fluentd - 无法使用 windows 身份验证连接到 SQL 服务器

Fluentd - Not able to connect to SQL server using windows authentication

我能够使用 SQL 服务器身份验证成功连接到 SQL 服务器,但是它不适用于 WINDOWS 身份验证,这是一个错误,还是我丢失了配置中有什么?

<source>
  @type sql
  host HOSTNAME
  database db_name
  adapter sqlserver
  username WindowsUser
  password WindowsPwd
  <table>
    table tbl_name
    update_column insert_timestamp
  </table>
</source>

<match **>
  @type stdout
</match>

我遇到以下错误:

[warn]: #0 failed to flush the buffer. retry_time=1 next_retry_seconds=2021-09-01 22:12:40 238620126384680326147/703687441776640000000 +0530 chunk="5caf1c0f1dfbb6d0ca989ce4ffd28fa3" error_class=TinyTds::Error error="Adaptive Server connection failed (localhost)

问题已解决,请确保添加具有 table 名称的架构名称。