Module: KubernetesMetadata::WatchNamespaces

Includes:
Common
Included in:
Fluent::Plugin::KubernetesMetadataFilter
Defined in:
lib/fluent/plugin/kubernetes_metadata_watch_namespaces.rb

Instance Method Summary collapse

Methods included from Common

#match_annotations, #parse_namespace_metadata, #parse_pod_metadata, #syms_to_strs

Instance Method Details

#get_namespaces_and_start_watcherObject

List all namespaces, record the resourceVersion and return a watcher starting from that resourceVersion.



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/fluent/plugin/kubernetes_metadata_watch_namespaces.rb', line 124

def get_namespaces_and_start_watcher
  options = {
    resource_version: '0' # Fetch from API server cache instead of etcd quorum read
  }
  namespaces = @client.get_namespaces(options)
  namespaces[:items].each do |namespace|
    cache_key = namespace[:metadata][:uid]
    @namespace_cache[cache_key] = (namespace)
    @stats.bump(:namespace_cache_host_updates)
  end

  # continue watching from most recent resourceVersion
  options[:resource_version] = namespaces[:metadata][:resourceVersion]

  watcher = @client.watch_namespaces(options)
  reset_namespace_watch_retry_stats
  watcher
end

#process_namespace_watcher_notices(watcher) ⇒ Object

Process a watcher notice and potentially raise an exception.



151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# File 'lib/fluent/plugin/kubernetes_metadata_watch_namespaces.rb', line 151

def process_namespace_watcher_notices(watcher)
  watcher.each do |notice|
    case notice[:type]
    when 'MODIFIED'
      reset_namespace_watch_retry_stats
      cache_key = notice[:object][:metadata][:uid]
      cached    = @namespace_cache[cache_key]
      if cached
        @namespace_cache[cache_key] = (notice[:object])
        @stats.bump(:namespace_cache_watch_updates)
      else
        @stats.bump(:namespace_cache_watch_misses)
      end
    when 'DELETED'
      reset_namespace_watch_retry_stats
      # ignore and let age out for cases where
      # deleted but still processing logs
      @stats.bump(:namespace_cache_watch_deletes_ignored)
    when 'ERROR'
      if notice[:object] && notice[:object][:code] == 410
        @stats.bump(:namespace_watch_gone_notices)
        raise GoneError
      else
        @stats.bump(:namespace_watch_error_type_notices)
        message = notice[:object][:message] if notice[:object] && notice[:object][:message]
        raise "Error while watching namespaces: #{message}"
      end
    else
      reset_namespace_watch_retry_stats
      # Don't pay attention to creations, since the created namespace may not
      # be used by any namespace on this node.
      @stats.bump(:namespace_cache_watch_ignored)
    end
  end
end

#reset_namespace_watch_retry_statsObject

Reset namespace watch retry count and backoff interval as there is a successful watch notice.



145
146
147
148
# File 'lib/fluent/plugin/kubernetes_metadata_watch_namespaces.rb', line 145

def reset_namespace_watch_retry_stats
  Thread.current[:namespace_watch_retry_count] = 0
  Thread.current[:namespace_watch_retry_backoff_interval] = @watch_retry_interval
end

#set_up_namespace_threadObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/fluent/plugin/kubernetes_metadata_watch_namespaces.rb', line 28

def set_up_namespace_thread
  # Any failures / exceptions in the initial setup should raise
  # Fluent:ConfigError, so that users can inspect potential errors in
  # the configuration.
  namespace_watcher = start_namespace_watch
  Thread.current[:namespace_watch_retry_backoff_interval] = @watch_retry_interval
  Thread.current[:namespace_watch_retry_count] = 0

  # Any failures / exceptions in the followup watcher notice
  # processing will be swallowed and retried. These failures /
  # exceptions could be caused by Kubernetes API being temporarily
  # down. We assume the configuration is correct at this point.
  loop do
    namespace_watcher ||= get_namespaces_and_start_watcher
    process_namespace_watcher_notices(namespace_watcher)
  rescue GoneError => e
    # Expected error. Quietly go back through the loop in order to
    # start watching from the latest resource versions
    @stats.bump(:namespace_watch_gone_errors)
    log.info('410 Gone encountered. Restarting namespace watch to reset resource versions.', e)
    namespace_watcher = nil
  rescue KubeException => e
    if e.error_code == 401
      # recreate client to refresh token
      log.info("Encountered '401 Unauthorized' exception in watch, recreating client to refresh token")
      create_client()
      namespace_watcher = nil
    else
      # treat all other errors the same as StandardError, log, swallow and reset
      @stats.bump(:namespace_watch_failures)
      if Thread.current[:namespace_watch_retry_count] < @watch_retry_max_times
        # Instead of raising exceptions and crashing Fluentd, swallow
        # the exception and reset the watcher.
        log.info(
          'Exception encountered parsing namespace watch event. ' \
          'The connection might have been closed. Sleeping for ' \
          "#{Thread.current[:namespace_watch_retry_backoff_interval]} " \
          'seconds and resetting the namespace watcher.', e
        )
        sleep(Thread.current[:namespace_watch_retry_backoff_interval])
        Thread.current[:namespace_watch_retry_count] += 1
        Thread.current[:namespace_watch_retry_backoff_interval] *= @watch_retry_exponential_backoff_base
        namespace_watcher = nil
      else
        # Since retries failed for many times, log as errors instead
        # of info and raise exceptions and trigger Fluentd to restart.
        message =
          'Exception encountered parsing namespace watch event. The ' \
          'connection might have been closed. Retried ' \
          "#{@watch_retry_max_times} times yet still failing. Restarting."
        log.error(message, e)
        raise Fluent::UnrecoverableError, message
      end
    end
  rescue StandardError => e
    @stats.bump(:namespace_watch_failures)
    if Thread.current[:namespace_watch_retry_count] < @watch_retry_max_times
      # Instead of raising exceptions and crashing Fluentd, swallow
      # the exception and reset the watcher.
      log.info(
        'Exception encountered parsing namespace watch event. ' \
        'The connection might have been closed. Sleeping for ' \
        "#{Thread.current[:namespace_watch_retry_backoff_interval]} " \
        'seconds and resetting the namespace watcher.', e
      )
      sleep(Thread.current[:namespace_watch_retry_backoff_interval])
      Thread.current[:namespace_watch_retry_count] += 1
      Thread.current[:namespace_watch_retry_backoff_interval] *= @watch_retry_exponential_backoff_base
      namespace_watcher = nil
    else
      # Since retries failed for many times, log as errors instead
      # of info and raise exceptions and trigger Fluentd to restart.
      message =
        'Exception encountered parsing namespace watch event. The ' \
        'connection might have been closed. Retried ' \
        "#{@watch_retry_max_times} times yet still failing. Restarting."
      log.error(message, e)
      raise Fluent::UnrecoverableError, message
    end
  end
end

#start_namespace_watchObject



110
111
112
113
114
115
116
117
118
119
120
# File 'lib/fluent/plugin/kubernetes_metadata_watch_namespaces.rb', line 110

def start_namespace_watch
  get_namespaces_and_start_watcher
rescue StandardError => e
  message = 'start_namespace_watch: Exception encountered setting up ' \
            "namespace watch from Kubernetes API #{@apiVersion} endpoint " \
            "#{@kubernetes_url}: #{e.message}"
  message += " (#{e.response})" if e.respond_to?(:response)
  log.debug(message)

  raise Fluent::ConfigError, message
end