-
-
Save masonlr/49b1bf927534ca7dbe47b15e415a7216 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# General | |
COMPOSE_PROJECT_NAME=feast | |
FEAST_VERSION=0.6.1 | |
FEAST_REPOSITORY_VERSION=v0.6.1 | |
# Feast Core | |
FEAST_CORE_IMAGE=gcr.io/kf-feast/feast-core | |
FEAST_CORE_CONFIG=core.yml | |
FEAST_CORE_GCP_SERVICE_ACCOUNT_KEY=key.json | |
# Feast Serving | |
FEAST_SERVING_IMAGE=gcr.io/kf-feast/feast-serving | |
# Feast Serving - Batch (BigQuery) | |
FEAST_BATCH_SERVING_CONFIG=batch-serving.yml | |
FEAST_BATCH_SERVING_GCP_SERVICE_ACCOUNT_KEY=key.json | |
# Feast Serving - Online (Redis) | |
FEAST_ONLINE_SERVING_CONFIG=online-serving.yml | |
# Jupyter | |
FEAST_JUPYTER_GCP_SERVICE_ACCOUNT_KEY=key.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
feast: | |
core-host: core | |
active-store: historical | |
stores: | |
- name: historical | |
type: BIGQUERY | |
# Changes required for batch serving to work | |
# Please see https://api.docs.feast.dev/grpc/feast.core.pb.html#Store for configuration options | |
config: | |
project_id: project-feast-test | |
dataset_id: test | |
staging_location: gs://feast-storage-bucket/test | |
initial_retry_delay_seconds: 1 | |
total_timeout_seconds: 21600 | |
write_triggering_frequency_seconds: 1 | |
subscriptions: | |
- name: "*" | |
project: "*" | |
job_store: | |
redis_host: redis | |
redis_port: 6379 | |
grpc: | |
port: 6567 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WARNING: sun.reflect.Reflection.getCallerClass is not supported. This will impact performance. | |
███████╗███████╗ █████╗ ███████╗████████╗ | |
██╔════╝██╔════╝██╔══██╗██╔════╝╚══██╔══╝ | |
█████╗ █████╗ ███████║███████╗ ██║ | |
██╔══╝ ██╔══╝ ██╔══██║╚════██║ ██║ | |
██║ ███████╗██║ ██║███████║ ██║ | |
╚═╝ ╚══════╝╚═╝ ╚═╝╚══════╝ ╚═╝ | |
██████╗ ██████╗ ██████╗ ███████╗ | |
██╔════╝██╔═══██╗██╔══██╗██╔════╝ | |
██║ ██║ ██║██████╔╝█████╗ | |
██║ ██║ ██║██╔══██╗██╔══╝ | |
╚██████╗╚██████╔╝██║ ██║███████╗ | |
╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝ | |
2020-07-30 09:13:52.647 INFO b14b4b4c6673 --- [ main] f.c.CoreApplication : Starting CoreApplication on b14b4b4c6673 with PID 1 (/opt/feast/feast-core.jar started by root in /) | |
2020-07-30 09:13:52.658 DEBUG b14b4b4c6673 --- [ main] f.c.CoreApplication : Running with Spring Boot v2.0.9.RELEASE, Spring v5.0.13.RELEASE | |
2020-07-30 09:13:52.660 INFO b14b4b4c6673 --- [ main] f.c.CoreApplication : No active profile set, falling back to default profiles: default | |
2020-07-30 09:13:52.811 INFO b14b4b4c6673 --- [ main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@7354b8c5: startup date [Thu Jul 30 09:13:52 UTC 2020]; root of context hierarchy | |
2020-07-30 09:13:56.736 INFO b14b4b4c6673 --- [ main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring | |
2020-07-30 09:13:57.081 INFO b14b4b4c6673 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$a020d1b9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | |
2020-07-30 09:13:57.161 INFO b14b4b4c6673 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$cc6ec036] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | |
2020-07-30 09:13:57.931 INFO b14b4b4c6673 --- [ main] o.s.b.w.e.t.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) | |
2020-07-30 09:13:57.955 INFO b14b4b4c6673 --- [ main] o.a.c.h.Http11NioProtocol : Initializing ProtocolHandler ["http-nio-8080"] | |
2020-07-30 09:13:57.982 INFO b14b4b4c6673 --- [ main] o.a.c.c.StandardService : Starting service [Tomcat] | |
2020-07-30 09:13:57.984 INFO b14b4b4c6673 --- [ main] o.a.c.c.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.39 | |
2020-07-30 09:13:58.011 INFO b14b4b4c6673 --- [ost-startStop-1] o.a.c.c.AprLifecycleListener : The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [/usr/java/packages/lib:/usr/lib64:/lib64:/lib:/usr/lib] | |
2020-07-30 09:13:58.139 INFO b14b4b4c6673 --- [ost-startStop-1] o.a.c.c.C.[.[.[/] : Initializing Spring embedded WebApplicationContext | |
2020-07-30 09:13:58.139 INFO b14b4b4c6673 --- [ost-startStop-1] o.s.w.c.ContextLoader : Root WebApplicationContext: initialization completed in 5338 ms | |
2020-07-30 09:13:59.208 WARN b14b4b4c6673 --- [ost-startStop-1] o.f.c.Flyway : Direct configuration of the Flyway object has been deprecated and will be removed in Flyway 6.0. Use Flyway.configure() instead. | |
2020-07-30 09:13:59.209 WARN b14b4b4c6673 --- [ost-startStop-1] o.f.c.Flyway : Direct configuration retrieval from the Flyway object has been deprecated and will be removed in Flyway 6.0. Use Flyway.getConfiguration() instead. | |
2020-07-30 09:13:59.210 WARN b14b4b4c6673 --- [ost-startStop-1] o.f.c.Flyway : Direct configuration retrieval from the Flyway object has been deprecated and will be removed in Flyway 6.0. Use Flyway.getConfiguration() instead. | |
2020-07-30 09:13:59.211 WARN b14b4b4c6673 --- [ost-startStop-1] o.f.c.Flyway : Direct configuration of the Flyway object has been deprecated and will be removed in Flyway 6.0. Use Flyway.configure() instead. | |
2020-07-30 09:13:59.236 WARN b14b4b4c6673 --- [ost-startStop-1] o.f.c.Flyway : Direct configuration of the Flyway object has been deprecated and will be removed in Flyway 6.0. Use Flyway.configure() instead. | |
2020-07-30 09:13:59.281 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.l.VersionPrinter : Flyway Community Edition 5.2.4 by Boxfuse | |
2020-07-30 09:13:59.332 INFO b14b4b4c6673 --- [ost-startStop-1] c.z.h.HikariDataSource : HikariPool-1 - Starting... | |
2020-07-30 09:13:59.531 INFO b14b4b4c6673 --- [ost-startStop-1] c.z.h.HikariDataSource : HikariPool-1 - Start completed. | |
2020-07-30 09:13:59.544 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.d.DatabaseFactory : Database: jdbc:postgresql://db:5432/postgres (PostgreSQL 12.3) | |
2020-07-30 09:13:59.558 WARN b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.d.b.Database : Flyway upgrade recommended: PostgreSQL 12.3 is newer than this version of Flyway and support has not been tested. | |
2020-07-30 09:13:59.675 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.c.DbValidate : Successfully validated 7 migrations (execution time 00:00.053s) | |
2020-07-30 09:13:59.695 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table: "public"."flyway_schema_history" | |
2020-07-30 09:13:59.733 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.c.DbMigrate : Current version of schema "public": << Empty Schema >> | |
2020-07-30 09:13:59.736 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.c.DbMigrate : Migrating schema "public" to version 1 - Baseline | |
2020-07-30 09:13:59.814 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.c.DbMigrate : Migrating schema "public" to version 2 - RELEASE 0.6 Generalizing Source AND Extending FeatureSetJobStatus AND Feature Statistics | |
2020-07-30 09:13:59.854 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.c.DbMigrate : Migrating schema "public" to version 2.1 - Many Stores Per Job | |
2020-07-30 09:13:59.869 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.c.DbMigrate : Migrating schema "public" to version 2.2 - Subscription Migration | |
2020-07-30 09:13:59.877 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.c.DbMigrate : Migrating schema "public" to version 2.3 - Fix Primary Keys | |
2020-07-30 09:13:59.902 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.c.DbMigrate : Migrating schema "public" to version 2.4 - Store proto | |
2020-07-30 09:13:59.911 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.c.DbMigrate : Migrating schema "public" to version 2.5 - Fix Subscription MIgration | |
2020-07-30 09:13:59.927 INFO b14b4b4c6673 --- [ost-startStop-1] o.f.c.i.c.DbMigrate : Successfully applied 7 migrations to schema "public" (execution time 00:00.232s) | |
2020-07-30 09:14:00.372 INFO b14b4b4c6673 --- [ost-startStop-1] j.LocalContainerEntityManagerFactoryBean : Building JPA container EntityManagerFactory for persistence unit 'default' | |
2020-07-30 09:14:00.440 INFO b14b4b4c6673 --- [ost-startStop-1] o.h.j.i.u.LogHelper : HHH000204: Processing PersistenceUnitInfo [ | |
name: default | |
...] | |
2020-07-30 09:14:00.595 INFO b14b4b4c6673 --- [ost-startStop-1] o.h.Version : HHH000412: Hibernate Core {5.3.6.Final} | |
2020-07-30 09:14:00.598 INFO b14b4b4c6673 --- [ost-startStop-1] o.h.c.Environment : HHH000206: hibernate.properties not found | |
2020-07-30 09:14:00.986 INFO b14b4b4c6673 --- [ost-startStop-1] o.h.a.c.Version : HCANN000001: Hibernate Commons Annotations {5.0.4.Final} | |
2020-07-30 09:14:01.899 INFO b14b4b4c6673 --- [ost-startStop-1] o.h.d.Dialect : HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL95Dialect | |
2020-07-30 09:14:02.132 INFO b14b4b4c6673 --- [ost-startStop-1] o.h.e.j.e.i.LobCreatorBuilderImpl : HHH000424: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException | |
2020-07-30 09:14:02.144 INFO b14b4b4c6673 --- [ost-startStop-1] o.h.t.BasicTypeRegistry : HHH000270: Type registration [java.util.UUID] overrides previous : org.hibernate.type.UUIDBinaryType@5613ea8a | |
2020-07-30 09:14:04.034 INFO b14b4b4c6673 --- [ost-startStop-1] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' | |
2020-07-30 09:14:05.388 INFO b14b4b4c6673 --- [ost-startStop-1] o.h.h.i.QueryTranslatorFactoryInitiator : HHH000397: Using ASTQueryTranslatorFactory | |
2020-07-30 09:14:06.240 INFO b14b4b4c6673 --- [ost-startStop-1] o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*] | |
2020-07-30 09:14:06.241 INFO b14b4b4c6673 --- [ost-startStop-1] o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'webMvcMetricsFilter' to: [/*] | |
2020-07-30 09:14:06.242 INFO b14b4b4c6673 --- [ost-startStop-1] o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | |
2020-07-30 09:14:06.242 INFO b14b4b4c6673 --- [ost-startStop-1] o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*] | |
2020-07-30 09:14:06.242 INFO b14b4b4c6673 --- [ost-startStop-1] o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*] | |
2020-07-30 09:14:06.243 INFO b14b4b4c6673 --- [ost-startStop-1] .s.DelegatingFilterProxyRegistrationBean : Mapping filter: 'springSecurityFilterChain' to: [/*] | |
2020-07-30 09:14:06.243 INFO b14b4b4c6673 --- [ost-startStop-1] o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'httpTraceFilter' to: [/*] | |
2020-07-30 09:14:06.243 INFO b14b4b4c6673 --- [ost-startStop-1] o.s.b.w.s.ServletRegistrationBean : Servlet metricsServlet mapped to [/metrics] | |
2020-07-30 09:14:06.250 INFO b14b4b4c6673 --- [ost-startStop-1] o.s.b.w.s.ServletRegistrationBean : Servlet dispatcherServlet mapped to [/] | |
2020-07-30 09:14:06.851 INFO b14b4b4c6673 --- [ main] .s.s.UserDetailsServiceAutoConfiguration : | |
Using generated security password: dbff9d86-4953-4e4f-820c-963bfc93e5f3 | |
2020-07-30 09:14:07.095 INFO b14b4b4c6673 --- [ main] o.s.s.w.DefaultSecurityFilterChain : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@16c587de, org.springframework.security.web.context.SecurityContextPersistenceFilter@7c1e32c9, org.springframework.security.web.header.HeaderWriterFilter@18acfe88, org.springframework.security.web.authentication.logout.LogoutFilter@34acbc60, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4cb40e3b, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2b9f74d0, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4cdb8504, org.springframework.security.web.session.SessionManagementFilter@140d1230, org.springframework.security.web.access.ExceptionTranslationFilter@1daf3b44, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3c0bbc9f] | |
2020-07-30 09:14:07.337 INFO b14b4b4c6673 --- [ main] o.s.w.s.h.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | |
2020-07-30 09:14:07.678 INFO b14b4b4c6673 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@7354b8c5: startup date [Thu Jul 30 09:13:52 UTC 2020]; root of context hierarchy | |
2020-07-30 09:14:07.796 WARN b14b4b4c6673 --- [ main] aWebConfiguration$JpaWebMvcConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning | |
2020-07-30 09:14:07.901 INFO b14b4b4c6673 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) | |
2020-07-30 09:14:07.908 INFO b14b4b4c6673 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.error(javax.servlet.http.HttpServletRequest) | |
2020-07-30 09:14:08.000 INFO b14b4b4c6673 --- [ main] o.s.w.s.h.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | |
2020-07-30 09:14:08.000 INFO b14b4b4c6673 --- [ main] o.s.w.s.h.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | |
2020-07-30 09:14:09.042 INFO b14b4b4c6673 --- [ main] o.s.b.a.e.w.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator' | |
2020-07-30 09:14:09.070 INFO b14b4b4c6673 --- [ main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/health],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>) | |
2020-07-30 09:14:09.071 INFO b14b4b4c6673 --- [ main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/info],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>) | |
2020-07-30 09:14:09.073 INFO b14b4b4c6673 --- [ main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto protected java.util.Map<java.lang.String, java.util.Map<java.lang.String, org.springframework.boot.actuate.endpoint.web.Link>> org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping.links(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) | |
2020-07-30 09:14:09.233 INFO b14b4b4c6673 --- [ main] o.a.k.c.a.AdminClientConfig : AdminClientConfig values: | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
client.dns.lookup = default | |
client.id = | |
connections.max.idle.ms = 300000 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
receive.buffer.bytes = 65536 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 15000 | |
retries = 5 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
2020-07-30 09:14:09.320 INFO b14b4b4c6673 --- [ main] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:14:09.320 INFO b14b4b4c6673 --- [ main] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:14:09.320 INFO b14b4b4c6673 --- [ main] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100449317 | |
2020-07-30 09:14:09.360 WARN b14b4b4c6673 --- [| adminclient-1] o.a.k.c.NetworkClient : [AdminClient clientId=adminclient-1] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:14:09.713 ERROR b14b4b4c6673 --- [ main] o.s.k.c.KafkaAdmin : Failed to create topics | |
org.apache.kafka.common.errors.InvalidReplicationFactorException: Replication factor: 3 larger than available brokers: 1. | |
2020-07-30 09:14:09.726 INFO b14b4b4c6673 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup | |
2020-07-30 09:14:09.729 INFO b14b4b4c6673 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Bean with name 'dataSource' has been autodetected for JMX exposure | |
2020-07-30 09:14:09.742 INFO b14b4b4c6673 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] | |
2020-07-30 09:14:09.811 INFO b14b4b4c6673 --- [ main] o.s.c.s.DefaultLifecycleProcessor : Starting beans in phase 2147483547 | |
2020-07-30 09:14:09.841 INFO b14b4b4c6673 --- [ main] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = latest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = true | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = core-service-null | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_uncommitted | |
key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 65536 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class feast.core.util.KafkaSerialization$ProtoDeserializer | |
2020-07-30 09:14:09.925 INFO b14b4b4c6673 --- [ main] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:14:09.925 INFO b14b4b4c6673 --- [ main] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:14:09.925 INFO b14b4b4c6673 --- [ main] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100449925 | |
2020-07-30 09:14:09.929 INFO b14b4b4c6673 --- [ main] o.a.k.c.c.KafkaConsumer : [Consumer clientId=consumer-1, groupId=core-service-null] Subscribed to topic(s): feast-specs-ack | |
2020-07-30 09:14:09.934 INFO b14b4b4c6673 --- [ main] o.s.s.c.ThreadPoolTaskScheduler : Initializing ExecutorService | |
2020-07-30 09:14:09.948 INFO b14b4b4c6673 --- [ main] o.s.c.s.DefaultLifecycleProcessor : Starting beans in phase 2147483647 | |
2020-07-30 09:14:09.970 WARN b14b4b4c6673 --- [ntainer#0-0-C-1] o.a.k.c.NetworkClient : [Consumer clientId=consumer-1, groupId=core-service-null] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:14:10.000 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.a.k.c.Metadata : [Consumer clientId=consumer-1, groupId=core-service-null] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:14:10.009 INFO b14b4b4c6673 --- [ main] n.d.b.g.s.s.AbstractGrpcServerFactory : Registered gRPC service: feast.core.CoreService, bean: coreServiceImpl, class: feast.core.grpc.CoreServiceImpl | |
2020-07-30 09:14:10.016 INFO b14b4b4c6673 --- [ main] n.d.b.g.s.s.AbstractGrpcServerFactory : Registered gRPC service: grpc.health.v1.Health, bean: healthServiceImpl, class: feast.core.grpc.HealthServiceImpl | |
2020-07-30 09:14:10.402 INFO b14b4b4c6673 --- [ main] n.d.b.g.s.s.GrpcServerLifecycle : gRPC Server started, listening on address: *, port: 6565 | |
2020-07-30 09:14:10.444 INFO b14b4b4c6673 --- [ main] s.a.ScheduledAnnotationBeanPostProcessor : No TaskScheduler/ScheduledExecutorService bean found for scheduled processing | |
2020-07-30 09:14:10.465 INFO b14b4b4c6673 --- [ main] o.a.c.h.Http11NioProtocol : Starting ProtocolHandler ["http-nio-8080"] | |
2020-07-30 09:14:10.468 INFO b14b4b4c6673 --- [ main] o.a.t.u.n.NioSelectorPool : Using a shared selector for servlet write/read | |
2020-07-30 09:14:10.476 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Polling for new jobs... | |
2020-07-30 09:14:10.609 INFO b14b4b4c6673 --- [ main] o.s.b.w.e.t.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' | |
2020-07-30 09:14:10.632 INFO b14b4b4c6673 --- [ main] f.c.CoreApplication : Started CoreApplication in 19.033 seconds (JVM running for 21.055) | |
2020-07-30 09:14:10.649 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : No jobs found. | |
2020-07-30 09:14:11.400 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator : [Consumer clientId=consumer-1, groupId=core-service-null] Discovered group coordinator kafka:9092 (id: 2147482646 rack: null) | |
2020-07-30 09:14:11.406 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator : [Consumer clientId=consumer-1, groupId=core-service-null] Revoking previously assigned partitions [] | |
2020-07-30 09:14:11.406 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer : partitions revoked: [] | |
2020-07-30 09:14:11.407 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator : [Consumer clientId=consumer-1, groupId=core-service-null] (Re-)joining group | |
2020-07-30 09:14:11.430 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator : [Consumer clientId=consumer-1, groupId=core-service-null] (Re-)joining group | |
2020-07-30 09:14:14.485 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator : [Consumer clientId=consumer-1, groupId=core-service-null] Successfully joined group with generation 1 | |
2020-07-30 09:14:14.490 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator : [Consumer clientId=consumer-1, groupId=core-service-null] Setting newly assigned partitions: feast-specs-ack-0 | |
2020-07-30 09:14:14.501 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator : [Consumer clientId=consumer-1, groupId=core-service-null] Found no committed offset for partition feast-specs-ack-0 | |
2020-07-30 09:14:14.513 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-1, groupId=core-service-null] Resetting offset for partition feast-specs-ack-0 to offset 0. | |
2020-07-30 09:14:14.514 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer : partitions assigned: [feast-specs-ack-0] | |
2020-07-30 09:14:40.655 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Polling for new jobs... | |
2020-07-30 09:14:40.672 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : No jobs found. | |
2020-07-30 09:15:10.675 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Polling for new jobs... | |
2020-07-30 09:15:10.699 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Creating/Updating 2 jobs... | |
2020-07-30 09:15:10.703 AUDIT b14b4b4c6673 --- [pool-4-thread-1] f.c.l.AuditLogger : {action=SUBMIT, detail=Building graph and submitting to DirectRunner, id=kafka-2111741832-to-historical-1596100510689, resource=JOB, timestamp=Thu Jul 30 09:15:10 UTC 2020} | |
2020-07-30 09:15:10.703 AUDIT b14b4b4c6673 --- [pool-4-thread-2] f.c.l.AuditLogger : {action=SUBMIT, detail=Building graph and submitting to DirectRunner, id=kafka-2111741832-to-online-1596100510696, resource=JOB, timestamp=Thu Jul 30 09:15:10 UTC 2020} | |
2020-07-30 09:15:11.471 INFO b14b4b4c6673 --- [pool-4-thread-2] f.i.ImportJob : Starting import job with settings: | |
Current Settings: | |
appName: DirectRunnerJobManager | |
blockOnRun: false | |
defaultFeastProject: default | |
enforceEncodability: true | |
enforceImmutability: true | |
gcsPerformanceMetrics: false | |
jobName: kafka-2111741832-to-online-1596100510696 | |
optionsId: 0 | |
project: | |
runner: class org.apache.beam.runners.direct.DirectRunner | |
sourceJson: { | |
"type": "KAFKA", | |
"kafkaSourceConfig": { | |
"bootstrapServers": "kafka:9092,localhost:9094", | |
"topic": "feast-features" | |
} | |
} | |
specsStreamingUpdateConfigJson: { | |
"source": { | |
"bootstrapServers": "kafka:9092,localhost:9094", | |
"topic": "feast-specs" | |
}, | |
"ack": { | |
"bootstrapServers": "kafka:9092,localhost:9094", | |
"topic": "feast-specs-ack" | |
} | |
} | |
stableUniqueNames: WARNING | |
storesJson: [{ | |
"name": "online", | |
"type": "REDIS", | |
"subscriptions": [{ | |
"name": "*", | |
"project": "*" | |
}], | |
"redisConfig": { | |
"host": "redis", | |
"port": 6379 | |
} | |
}] | |
2020-07-30 09:15:11.471 INFO b14b4b4c6673 --- [pool-4-thread-1] f.i.ImportJob : Starting import job with settings: | |
Current Settings: | |
appName: DirectRunnerJobManager | |
blockOnRun: false | |
defaultFeastProject: default | |
enforceEncodability: true | |
enforceImmutability: true | |
gcsPerformanceMetrics: false | |
jobName: kafka-2111741832-to-historical-1596100510689 | |
optionsId: 1 | |
project: | |
runner: class org.apache.beam.runners.direct.DirectRunner | |
sourceJson: { | |
"type": "KAFKA", | |
"kafkaSourceConfig": { | |
"bootstrapServers": "kafka:9092,localhost:9094", | |
"topic": "feast-features" | |
} | |
} | |
specsStreamingUpdateConfigJson: { | |
"source": { | |
"bootstrapServers": "kafka:9092,localhost:9094", | |
"topic": "feast-specs" | |
}, | |
"ack": { | |
"bootstrapServers": "kafka:9092,localhost:9094", | |
"topic": "feast-specs-ack" | |
} | |
} | |
stableUniqueNames: WARNING | |
storesJson: [{ | |
"name": "historical", | |
"type": "BIGQUERY", | |
"subscriptions": [{ | |
"name": "*", | |
"project": "*" | |
}], | |
"bigqueryConfig": { | |
"projectId": "project-feast-test", | |
"datasetId": "test", | |
"stagingLocation": "gs://feast-storage-bucket/test", | |
"initialRetryDelaySeconds": 1, | |
"totalTimeoutSeconds": 21600, | |
"writeTriggeringFrequencySeconds": 1 | |
} | |
}] | |
2020-07-30 09:15:12.230 INFO b14b4b4c6673 --- [pool-4-thread-2] i.l.c.EpollProvider : Starting without optional epoll library | |
2020-07-30 09:15:12.233 INFO b14b4b4c6673 --- [pool-4-thread-2] i.l.c.KqueueProvider : Starting without optional kqueue library | |
2020-07-30 09:15:12.853 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = latest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = feast_import_job_kafka-2111741832-to-historical | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_committed | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:12.853 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = latest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = feast_import_job_kafka-2111741832-to-online | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_committed | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:12.864 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:12.864 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:12.864 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100512863 | |
2020-07-30 09:15:12.871 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:12.871 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:12.871 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100512871 | |
2020-07-30 09:15:12.873 WARN b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.NetworkClient : [Consumer clientId=consumer-3, groupId=feast_import_job_kafka-2111741832-to-online] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:15:12.878 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.b.s.i.k.KafkaUnboundedSource : Partitions assigned to split 0 (total 1): feast-features-0 | |
2020-07-30 09:15:12.888 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = earliest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = null | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_uncommitted | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:12.891 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:12.891 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:12.892 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100512891 | |
2020-07-30 09:15:12.893 WARN b14b4b4c6673 --- [pool-4-thread-1] o.a.k.c.NetworkClient : [Consumer clientId=consumer-4, groupId=null] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:15:12.976 WARN b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.NetworkClient : [Consumer clientId=consumer-3, groupId=feast_import_job_kafka-2111741832-to-online] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:15:13.000 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.k.c.Metadata : [Consumer clientId=consumer-4, groupId=null] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.081 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.Metadata : [Consumer clientId=consumer-3, groupId=feast_import_job_kafka-2111741832-to-online] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.084 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.b.s.i.k.KafkaUnboundedSource : Partitions assigned to split 0 (total 1): feast-features-0 | |
2020-07-30 09:15:13.086 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = earliest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = null | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_uncommitted | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:13.089 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.089 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.089 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513089 | |
2020-07-30 09:15:13.093 INFO b14b4b4c6673 --- [pool-4-thread-2] o.a.b.s.i.k.KafkaUnboundedSource : Partitions assigned to split 0 (total 1): feast-specs-0 | |
2020-07-30 09:15:13.101 AUDIT b14b4b4c6673 --- [pool-4-thread-2] f.c.l.AuditLogger : {action=STATUS_CHANGE, detail=Job submitted to runner DirectRunner with ext id kafka-2111741832-to-online-1596100510696., id=kafka-2111741832-to-online-1596100510696, resource=JOB, timestamp=Thu Jul 30 09:15:13 UTC 2020} | |
2020-07-30 09:15:13.132 INFO b14b4b4c6673 --- [pool-4-thread-1] o.a.b.s.i.k.KafkaUnboundedSource : Partitions assigned to split 0 (total 1): feast-specs-0 | |
2020-07-30 09:15:13.154 AUDIT b14b4b4c6673 --- [pool-4-thread-1] f.c.l.AuditLogger : {action=STATUS_CHANGE, detail=Job submitted to runner DirectRunner with ext id kafka-2111741832-to-historical-1596100510689., id=kafka-2111741832-to-historical-1596100510689, resource=JOB, timestamp=Thu Jul 30 09:15:13 UTC 2020} | |
2020-07-30 09:15:13.194 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Sending new FeatureSet default/customer_transactions to Ingestion | |
2020-07-30 09:15:13.197 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = latest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = feast_import_job_kafka-2111741832-to-historical | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_committed | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:13.197 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = earliest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = null | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_uncommitted | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:13.197 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = latest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = feast_import_job_kafka-2111741832-to-online | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_committed | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:13.197 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = earliest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = null | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_uncommitted | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:13.205 INFO b14b4b4c6673 --- [pool-3-thread-1] o.a.k.c.p.ProducerConfig : ProducerConfig values: | |
acks = 1 | |
batch.size = 16384 | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
buffer.memory = 33554432 | |
client.dns.lookup = default | |
client.id = | |
compression.type = none | |
connections.max.idle.ms = 540000 | |
delivery.timeout.ms = 120000 | |
enable.idempotence = false | |
interceptor.classes = [] | |
key.serializer = class org.apache.kafka.common.serialization.StringSerializer | |
linger.ms = 0 | |
max.block.ms = 60000 | |
max.in.flight.requests.per.connection = 5 | |
max.request.size = 1048576 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partitioner.class = class org.apache.kafka.clients.producer.internals.DefaultPartitioner | |
receive.buffer.bytes = 32768 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retries = 2147483647 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
transaction.timeout.ms = 60000 | |
transactional.id = null | |
value.serializer = class feast.core.util.KafkaSerialization$ProtoSerializer | |
2020-07-30 09:15:13.206 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.206 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.207 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513206 | |
2020-07-30 09:15:13.209 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.209 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.209 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513209 | |
2020-07-30 09:15:13.211 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.211 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.211 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513210 | |
2020-07-30 09:15:13.211 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.211 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.212 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513209 | |
2020-07-30 09:15:13.237 INFO b14b4b4c6673 --- [pool-3-thread-1] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.237 INFO b14b4b4c6673 --- [pool-3-thread-1] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.237 INFO b14b4b4c6673 --- [pool-3-thread-1] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513237 | |
2020-07-30 09:15:13.250 INFO b14b4b4c6673 --- [ad | producer-1] o.a.k.c.Metadata : [Producer clientId=producer-1] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.304 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.KafkaConsumer : [Consumer clientId=consumer-8, groupId=feast_import_job_kafka-2111741832-to-online] Subscribed to partition(s): feast-features-0 | |
2020-07-30 09:15:13.304 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.KafkaConsumer : [Consumer clientId=consumer-7, groupId=null] Subscribed to partition(s): feast-specs-0 | |
2020-07-30 09:15:13.304 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.KafkaConsumer : [Consumer clientId=consumer-6, groupId=feast_import_job_kafka-2111741832-to-historical] Subscribed to partition(s): feast-features-0 | |
2020-07-30 09:15:13.304 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.KafkaConsumer : [Consumer clientId=consumer-9, groupId=null] Subscribed to partition(s): feast-specs-0 | |
2020-07-30 09:15:13.320 WARN b14b4b4c6673 --- [ool-15-thread-1] o.a.k.c.NetworkClient : [Consumer clientId=consumer-9, groupId=null] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:15:13.320 WARN b14b4b4c6673 --- [ool-16-thread-1] o.a.k.c.NetworkClient : [Consumer clientId=consumer-6, groupId=feast_import_job_kafka-2111741832-to-historical] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:15:13.321 WARN b14b4b4c6673 --- [ool-14-thread-1] o.a.k.c.NetworkClient : [Consumer clientId=consumer-7, groupId=null] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:15:13.326 INFO b14b4b4c6673 --- [ool-13-thread-1] o.a.k.c.Metadata : [Consumer clientId=consumer-8, groupId=feast_import_job_kafka-2111741832-to-online] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.326 INFO b14b4b4c6673 --- [ool-15-thread-1] o.a.k.c.Metadata : [Consumer clientId=consumer-9, groupId=null] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.328 INFO b14b4b4c6673 --- [ool-13-thread-1] o.a.k.c.c.i.AbstractCoordinator : [Consumer clientId=consumer-8, groupId=feast_import_job_kafka-2111741832-to-online] Discovered group coordinator kafka:9092 (id: 2147482646 rack: null) | |
2020-07-30 09:15:13.331 INFO b14b4b4c6673 --- [ool-16-thread-1] o.a.k.c.Metadata : [Consumer clientId=consumer-6, groupId=feast_import_job_kafka-2111741832-to-historical] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.334 INFO b14b4b4c6673 --- [ool-15-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-9, groupId=null] Resetting offset for partition feast-specs-0 to offset 0. | |
2020-07-30 09:15:13.334 INFO b14b4b4c6673 --- [ool-13-thread-1] o.a.k.c.c.i.ConsumerCoordinator : [Consumer clientId=consumer-8, groupId=feast_import_job_kafka-2111741832-to-online] Found no committed offset for partition feast-features-0 | |
2020-07-30 09:15:13.334 INFO b14b4b4c6673 --- [t-runner-worker] o.a.b.s.i.k.KafkaUnboundedSource : Reader-0: reading from feast-specs-0 starting at offset 0 | |
2020-07-30 09:15:13.336 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = earliest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = Reader-0_offset_consumer_51699480_none | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_uncommitted | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:13.336 INFO b14b4b4c6673 --- [ool-14-thread-1] o.a.k.c.Metadata : [Consumer clientId=consumer-7, groupId=null] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.338 INFO b14b4b4c6673 --- [ool-16-thread-1] o.a.k.c.c.i.AbstractCoordinator : [Consumer clientId=consumer-6, groupId=feast_import_job_kafka-2111741832-to-historical] Discovered group coordinator kafka:9092 (id: 2147482646 rack: null) | |
2020-07-30 09:15:13.341 INFO b14b4b4c6673 --- [ool-16-thread-1] o.a.k.c.c.i.ConsumerCoordinator : [Consumer clientId=consumer-6, groupId=feast_import_job_kafka-2111741832-to-historical] Found no committed offset for partition feast-features-0 | |
2020-07-30 09:15:13.342 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.343 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.343 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513342 | |
2020-07-30 09:15:13.344 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.KafkaConsumer : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Subscribed to partition(s): feast-specs-0 | |
2020-07-30 09:15:13.344 INFO b14b4b4c6673 --- [ool-16-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-6, groupId=feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:13.345 INFO b14b4b4c6673 --- [t-runner-worker] o.a.b.s.i.k.KafkaUnboundedSource : Reader-0: reading from feast-features-0 starting at offset 0 | |
2020-07-30 09:15:13.345 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:13.347 WARN b14b4b4c6673 --- [t-runner-worker] o.a.k.c.NetworkClient : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:15:13.351 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = latest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_uncommitted | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:13.353 INFO b14b4b4c6673 --- [ool-14-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-7, groupId=null] Resetting offset for partition feast-specs-0 to offset 0. | |
2020-07-30 09:15:13.353 INFO b14b4b4c6673 --- [t-runner-worker] o.a.b.s.i.k.KafkaUnboundedSource : Reader-0: reading from feast-specs-0 starting at offset 0 | |
2020-07-30 09:15:13.354 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = earliest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = Reader-0_offset_consumer_868334536_none | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_uncommitted | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:13.364 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.365 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.365 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513364 | |
2020-07-30 09:15:13.366 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.366 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.367 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513365 | |
2020-07-30 09:15:13.366 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.KafkaConsumer : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Subscribed to partition(s): feast-features-0 | |
2020-07-30 09:15:13.366 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.Metadata : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.369 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:13.369 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.KafkaConsumer : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Subscribed to partition(s): feast-specs-0 | |
2020-07-30 09:15:13.370 INFO b14b4b4c6673 --- [ool-13-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-8, groupId=feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:13.370 INFO b14b4b4c6673 --- [t-runner-worker] o.a.b.s.i.k.KafkaUnboundedSource : Reader-0: reading from feast-features-0 starting at offset 0 | |
2020-07-30 09:15:13.370 WARN b14b4b4c6673 --- [t-runner-worker] o.a.k.c.NetworkClient : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:15:13.371 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.ConsumerConfig : ConsumerConfig values: | |
allow.auto.create.topics = true | |
auto.commit.interval.ms = 5000 | |
auto.offset.reset = latest | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
check.crcs = true | |
client.dns.lookup = default | |
client.id = | |
client.rack = | |
connections.max.idle.ms = 540000 | |
default.api.timeout.ms = 60000 | |
enable.auto.commit = false | |
exclude.internal.topics = true | |
fetch.max.bytes = 52428800 | |
fetch.max.wait.ms = 500 | |
fetch.min.bytes = 1 | |
group.id = Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online | |
group.instance.id = null | |
heartbeat.interval.ms = 3000 | |
interceptor.classes = [] | |
internal.leave.group.on.close = true | |
isolation.level = read_uncommitted | |
key.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
max.partition.fetch.bytes = 1048576 | |
max.poll.interval.ms = 300000 | |
max.poll.records = 500 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] | |
receive.buffer.bytes = 524288 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
session.timeout.ms = 10000 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
value.deserializer = class org.apache.kafka.common.serialization.ByteArrayDeserializer | |
2020-07-30 09:15:13.372 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:13.375 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:13.375 WARN b14b4b4c6673 --- [t-runner-worker] o.a.k.c.NetworkClient : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:15:13.377 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.377 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.378 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513377 | |
2020-07-30 09:15:13.378 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.KafkaConsumer : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Subscribed to partition(s): feast-features-0 | |
2020-07-30 09:15:13.379 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:13.381 WARN b14b4b4c6673 --- [t-runner-worker] o.a.k.c.NetworkClient : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Connection to node -2 (localhost/127.0.0.1:9094) could not be established. Broker may not be available. | |
2020-07-30 09:15:13.383 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.Metadata : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.384 INFO b14b4b4c6673 --- [t-runner-worker] o.a.b.s.i.k.KafkaUnboundedSource : Reader-0: first record offset 0 | |
2020-07-30 09:15:13.386 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.Metadata : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.390 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.Metadata : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.395 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:13.395 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:13.397 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:13.397 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:13.403 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:13.405 INFO b14b4b4c6673 --- [t-runner-worker] o.a.b.s.i.k.KafkaUnboundedSource : Reader-0: first record offset 0 | |
2020-07-30 09:15:13.406 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:13.412 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:13.424 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:13.434 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:13.441 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:13.443 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:13.909 WARN b14b4b4c6673 --- [t-runner-worker] o.a.b.s.u.MutationDetectors : Coder of type class org.apache.beam.sdk.io.kafka.ProducerRecordCoder has a #structuralValue method which does not return true when the encoding of the elements is equal. Element ProducerRecord(topic=feast-specs-ack, partition=null, headers=RecordHeaders(headers = [], isReadOnly = false), key=default/customer_transactions, value=[B@1905d84b, timestamp=null) | |
2020-07-30 09:15:13.919 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.p.ProducerConfig : ProducerConfig values: | |
acks = 1 | |
batch.size = 16384 | |
bootstrap.servers = [kafka:9092, localhost:9094] | |
buffer.memory = 33554432 | |
client.dns.lookup = default | |
client.id = | |
compression.type = none | |
connections.max.idle.ms = 540000 | |
delivery.timeout.ms = 120000 | |
enable.idempotence = false | |
interceptor.classes = [] | |
key.serializer = class org.apache.kafka.common.serialization.StringSerializer | |
linger.ms = 0 | |
max.block.ms = 60000 | |
max.in.flight.requests.per.connection = 5 | |
max.request.size = 1048576 | |
metadata.max.age.ms = 300000 | |
metric.reporters = [] | |
metrics.num.samples = 2 | |
metrics.recording.level = INFO | |
metrics.sample.window.ms = 30000 | |
partitioner.class = class org.apache.kafka.clients.producer.internals.DefaultPartitioner | |
receive.buffer.bytes = 32768 | |
reconnect.backoff.max.ms = 1000 | |
reconnect.backoff.ms = 50 | |
request.timeout.ms = 30000 | |
retries = 3 | |
retry.backoff.ms = 100 | |
sasl.client.callback.handler.class = null | |
sasl.jaas.config = null | |
sasl.kerberos.kinit.cmd = /usr/bin/kinit | |
sasl.kerberos.min.time.before.relogin = 60000 | |
sasl.kerberos.service.name = null | |
sasl.kerberos.ticket.renew.jitter = 0.05 | |
sasl.kerberos.ticket.renew.window.factor = 0.8 | |
sasl.login.callback.handler.class = null | |
sasl.login.class = null | |
sasl.login.refresh.buffer.seconds = 300 | |
sasl.login.refresh.min.period.seconds = 60 | |
sasl.login.refresh.window.factor = 0.8 | |
sasl.login.refresh.window.jitter = 0.05 | |
sasl.mechanism = GSSAPI | |
security.protocol = PLAINTEXT | |
send.buffer.bytes = 131072 | |
ssl.cipher.suites = null | |
ssl.enabled.protocols = [TLSv1.2, TLSv1.1, TLSv1] | |
ssl.endpoint.identification.algorithm = https | |
ssl.key.password = null | |
ssl.keymanager.algorithm = SunX509 | |
ssl.keystore.location = null | |
ssl.keystore.password = null | |
ssl.keystore.type = JKS | |
ssl.protocol = TLS | |
ssl.provider = null | |
ssl.secure.random.implementation = null | |
ssl.trustmanager.algorithm = PKIX | |
ssl.truststore.location = null | |
ssl.truststore.password = null | |
ssl.truststore.type = JKS | |
transaction.timeout.ms = 60000 | |
transactional.id = null | |
value.serializer = class org.apache.kafka.common.serialization.ByteArraySerializer | |
2020-07-30 09:15:13.922 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka version: 2.3.0 | |
2020-07-30 09:15:13.922 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka commitId: fc1aaa116b661c8a | |
2020-07-30 09:15:13.922 INFO b14b4b4c6673 --- [t-runner-worker] o.a.k.c.u.AppInfoParser : Kafka startTimeMs: 1596100513921 | |
2020-07-30 09:15:13.927 INFO b14b4b4c6673 --- [ad | producer-2] o.a.k.c.Metadata : [Producer clientId=producer-2] Cluster ID: rKCmSutRSXWupyLnyrpPcQ | |
2020-07-30 09:15:13.929 WARN b14b4b4c6673 --- [t-runner-worker] o.a.b.s.u.MutationDetectors : Coder of type class org.apache.beam.sdk.io.kafka.ProducerRecordCoder has a #structuralValue method which does not return true when the encoding of the elements is equal. Element ProducerRecord(topic=feast-specs-ack, partition=null, headers=RecordHeaders(headers = [], isReadOnly = false), key=default/customer_transactions, value=[B@2fe8c87e, timestamp=null) | |
2020-07-30 09:15:13.935 WARN b14b4b4c6673 --- [t-runner-worker] o.a.b.s.u.MutationDetectors : Coder of type class org.apache.beam.sdk.io.kafka.ProducerRecordCoder has a #structuralValue method which does not return true when the encoding of the elements is equal. Element ProducerRecord(topic=feast-specs-ack, partition=null, headers=RecordHeaders(headers = [], isReadOnly = false), key=default/customer_transactions, value=[B@2fe8c87e, timestamp=null) | |
2020-07-30 09:15:13.945 INFO b14b4b4c6673 --- [ntainer#0-0-C-1] f.c.s.JobCoordinatorService : Updating featureSet default/customer_transactions delivery statuses. | |
2020-07-30 09:15:14.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:14.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:14.401 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:14.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:14.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:14.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:14.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:14.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:15.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:15.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:15.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:15.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:15.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:15.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:15.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:15.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:16.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:16.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:16.401 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:16.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:16.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:16.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:16.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:16.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:17.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:17.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:17.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:17.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:17.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:17.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:17.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:17.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:18.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:18.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:18.401 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:18.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:18.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:18.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:18.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:18.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:19.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:19.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:19.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:19.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:19.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:19.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:19.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:19.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:20.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:20.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:20.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:20.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:20.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:20.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:20.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:20.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:21.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:21.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:21.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:21.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:21.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:21.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:21.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:21.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:22.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:22.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:22.401 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:22.401 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:22.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:22.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:22.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:22.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:23.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:23.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:23.401 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:23.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:23.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:23.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:23.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:23.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:24.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:24.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:24.401 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:24.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:24.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:24.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:24.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:24.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:25.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:25.381 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:25.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:25.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:25.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:25.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:25.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:25.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:26.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:26.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:26.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:26.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:26.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:26.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:26.407 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:26.409 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:27.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:27.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:27.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:27.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:27.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:27.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:27.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:27.408 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:28.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:28.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:28.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:28.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:28.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:28.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:28.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:28.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:29.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:29.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:29.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:29.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:29.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:29.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:29.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:29.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:30.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:30.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:30.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:30.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:30.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:30.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:30.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:30.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:31.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:31.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:31.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:31.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:31.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:31.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:31.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:31.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:32.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:32.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:32.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:32.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:32.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:32.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:32.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:32.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:33.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:33.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:33.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:33.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:33.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:33.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:33.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:33.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:34.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:34.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:34.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:34.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:34.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:34.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:34.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:34.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:35.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:35.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:35.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:35.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:35.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:35.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:35.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:35.406 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:36.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:36.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:36.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:36.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:36.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:36.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:36.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:36.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:37.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:37.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:37.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:37.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:37.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:37.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:37.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:37.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:38.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:38.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:38.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:38.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:38.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:38.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:38.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:38.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:39.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:39.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:39.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:39.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:39.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:39.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:39.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:39.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:40.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:40.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:40.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:40.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:40.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:40.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:40.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:40.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:41.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:41.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:41.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:41.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:41.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:41.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:41.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:41.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:42.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:42.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:42.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:42.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:42.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:42.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:42.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:42.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:43.174 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Polling for new jobs... | |
2020-07-30 09:15:43.194 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Creating/Updating 2 jobs... | |
2020-07-30 09:15:43.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:43.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:43.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:43.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:43.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:43.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:43.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:43.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:44.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:44.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:44.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:44.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:44.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:44.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:44.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:44.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:45.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:45.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:45.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:45.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:45.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:45.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:45.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:45.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:46.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:46.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:46.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:46.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:46.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:46.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:46.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:46.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:47.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:47.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:47.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:47.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:47.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:47.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:47.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:47.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:48.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:48.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:48.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:48.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:48.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:48.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:48.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:48.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:49.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:49.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:49.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:49.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:49.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:49.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:49.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:49.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:50.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:50.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:50.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:50.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:50.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:50.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:50.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:50.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:51.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:51.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:51.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:51.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:51.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:51.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:51.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:51.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:52.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:52.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:52.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:52.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:52.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:52.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:52.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:52.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:53.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:53.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:53.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:53.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:53.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:53.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:53.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:53.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:54.377 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:54.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:54.402 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:54.402 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:54.402 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:54.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:54.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:54.408 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:55.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:55.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:55.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:55.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:55.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:55.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:55.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:55.406 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:56.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:56.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:56.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:56.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:56.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:56.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:56.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:56.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:57.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:57.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:57.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:57.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:57.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:57.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:57.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:57.406 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:58.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:58.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:58.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:58.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:58.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:58.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:58.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:58.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:59.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:59.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:59.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:15:59.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:59.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:15:59.406 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:15:59.406 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:15:59.406 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:00.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:00.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:00.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:00.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:00.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:00.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:00.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:00.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:01.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:01.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:01.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:01.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:01.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:01.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:01.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:01.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:02.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:02.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:02.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:02.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:02.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:02.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:02.406 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:02.406 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:03.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:03.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:03.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:03.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:03.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:03.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:03.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:03.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:04.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:04.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:04.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:04.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:04.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:04.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:04.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:04.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:05.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:05.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:05.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:05.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:05.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:05.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:05.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:05.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:06.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:06.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:06.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:06.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:06.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:06.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:06.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:06.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:07.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:07.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:07.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:07.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:07.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:07.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:07.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:07.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:08.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:08.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:08.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:08.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:08.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:08.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:08.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:08.406 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:09.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:09.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:09.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:09.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:09.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:09.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:09.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:09.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:10.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:10.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:10.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:10.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:10.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:10.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:10.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:10.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:11.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:11.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:11.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:11.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:11.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:11.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:11.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:11.406 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:12.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:12.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:12.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:12.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:12.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:12.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:12.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:12.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:13.200 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Polling for new jobs... | |
2020-07-30 09:16:13.208 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Creating/Updating 2 jobs... | |
2020-07-30 09:16:13.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:13.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:13.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:13.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:13.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:13.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:13.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:13.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:14.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:14.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:14.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:14.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:14.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:14.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:14.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:14.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:15.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:15.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:15.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:15.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:15.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:15.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:15.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:15.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:16.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:16.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:16.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:16.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:16.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:16.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:16.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:16.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:17.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:17.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:17.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:17.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:17.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:17.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:17.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:17.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:18.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:18.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:18.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:18.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:18.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:18.405 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:18.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:18.406 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:19.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:19.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:19.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:19.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:19.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:19.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:19.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:19.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:20.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:20.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:20.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:20.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:20.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:20.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:20.405 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:20.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:21.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:21.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:21.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:21.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:21.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:21.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:21.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:21.405 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:22.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:22.379 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:22.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:22.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:22.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:22.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:22.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:22.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:23.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:23.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:23.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:23.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:23.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:23.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:23.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:23.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:24.378 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:24.380 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:24.403 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:24.403 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:24.403 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:24.404 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:24.404 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:24.404 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:25.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:25.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:25.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:25.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:25.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:25.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:25.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:25.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:26.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:26.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:26.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:26.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:26.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:26.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:26.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:26.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:27.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:27.371 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:27.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:27.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:27.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:27.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:27.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:27.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:28.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:28.371 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:28.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:28.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:28.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:28.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:28.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:28.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:29.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:29.371 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:29.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:29.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:29.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:29.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:29.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:29.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:30.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:30.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:30.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:30.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:30.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:30.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:30.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:30.397 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:31.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:31.373 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:31.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:31.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:31.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:31.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:31.397 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:31.398 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:32.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:32.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:32.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:32.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:32.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:32.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:32.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:32.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:33.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:33.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:33.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:33.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:33.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:33.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:33.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:33.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:34.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:34.371 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:34.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:34.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:34.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:34.397 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:34.397 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:34.397 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:35.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:35.371 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:35.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:35.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:35.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:35.397 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:35.397 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:35.397 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:36.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:36.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:36.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:36.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:36.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:36.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:36.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:36.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:37.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:37.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:37.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:37.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:37.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:37.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:37.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:37.397 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:38.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:38.371 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:38.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:38.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:38.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:38.397 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:38.397 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:38.397 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:39.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:39.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:39.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:39.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:39.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:39.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:39.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:39.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:40.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:40.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:40.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:40.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:40.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:40.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:40.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:40.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:41.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:41.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:41.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:41.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:41.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:41.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:41.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:41.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:42.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:42.371 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:42.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:42.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:42.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:42.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:42.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:42.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:43.203 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Polling for new jobs... | |
2020-07-30 09:16:43.210 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Creating/Updating 2 jobs... | |
2020-07-30 09:16:43.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:43.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:43.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:43.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:43.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:43.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:43.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:43.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:44.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:44.374 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:44.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:44.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:44.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:44.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:44.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:44.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:45.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:45.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:45.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:45.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:45.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:45.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:45.397 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:45.397 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:46.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:46.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:46.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:46.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:46.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:46.397 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:46.397 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:46.398 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:47.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:47.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:47.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:47.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:47.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:47.397 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:47.397 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:47.398 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:48.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:48.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:48.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:48.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:48.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:48.397 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:48.397 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:48.397 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:49.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:49.371 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:49.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:49.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:49.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:49.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:49.397 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:49.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:50.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:50.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:50.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:50.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:50.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:50.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:50.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:50.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:51.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:51.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:51.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:51.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:51.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:51.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:51.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:51.397 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:52.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:52.371 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:52.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:52.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:52.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:52.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:52.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:52.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:53.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:53.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:53.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:53.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:53.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:53.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:53.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:53.400 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:54.370 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:54.372 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:54.395 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:54.395 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:54.395 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:54.396 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:54.396 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:54.396 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:55.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:55.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:55.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:55.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:55.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:55.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:55.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:55.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:56.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:56.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:56.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:56.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:56.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:56.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:56.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:56.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:57.365 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:57.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:57.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:57.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:57.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:57.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:57.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:57.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:58.365 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:58.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:58.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:58.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:58.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:58.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:58.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:58.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:59.365 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:59.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:59.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:16:59.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:59.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:16:59.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:16:59.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:16:59.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:00.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:00.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:00.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:00.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:00.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:00.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:00.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:00.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:01.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:01.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:01.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:01.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:01.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:01.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:01.392 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:01.392 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:02.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:02.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:02.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:02.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:02.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:02.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:02.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:02.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:03.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:03.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:03.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:03.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:03.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:03.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:03.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:03.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:04.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:04.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:04.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:04.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:04.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:04.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:04.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:04.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:05.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:05.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:05.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:05.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:05.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:05.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:05.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:05.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:06.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:06.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:06.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:06.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:06.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:06.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:06.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:06.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:07.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:07.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:07.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:07.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:07.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:07.392 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:07.392 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:07.392 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:08.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:08.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:08.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:08.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:08.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:08.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:08.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:08.392 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:09.365 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:09.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:09.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:09.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:09.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:09.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:09.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:09.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:10.365 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:10.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:10.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:10.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:10.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:10.392 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:10.392 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:10.392 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:11.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:11.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:11.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:11.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:11.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:11.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:11.391 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:11.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:12.366 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:12.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:12.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:12.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:12.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:12.391 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:12.391 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:12.392 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:13.212 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Polling for new jobs... | |
2020-07-30 09:17:13.218 INFO b14b4b4c6673 --- [pool-3-thread-1] f.c.s.JobCoordinatorService : Creating/Updating 2 jobs... | |
2020-07-30 09:17:13.365 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:13.367 INFO b14b4b4c6673 --- [ool-19-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-10, groupId=Reader-0_offset_consumer_51699480_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:13.390 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Seeking to LATEST offset of partition feast-specs-0 | |
2020-07-30 09:17:13.390 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:13.390 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Seeking to LATEST offset of partition feast-features-0 | |
2020-07-30 09:17:13.392 INFO b14b4b4c6673 --- [ool-18-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-12, groupId=Reader-0_offset_consumer_868334536_none] Resetting offset for partition feast-specs-0 to offset 1. | |
2020-07-30 09:17:13.392 INFO b14b4b4c6673 --- [ool-20-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-11, groupId=Reader-0_offset_consumer_1257793659_feast_import_job_kafka-2111741832-to-historical] Resetting offset for partition feast-features-0 to offset 0. | |
2020-07-30 09:17:13.392 INFO b14b4b4c6673 --- [ool-17-thread-1] o.a.k.c.c.i.SubscriptionState : [Consumer clientId=consumer-13, groupId=Reader-0_offset_consumer_108503113_feast_import_job_kafka-2111741832-to-online] Resetting offset for partition feast-features-0 to offset 0. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment