[
https://issues.apache.org/jira/browse/FLINK-24571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Flink Jira Bot updated FLINK-24571:
-----------------------------------
Labels: pull-request-available stale-assigned (was: pull-request-available)
I am the [Flink Jira Bot|https://github.com/apache/flink-jira-bot/] and I help
the community manage its development. I see this issue is assigned but has not
received an update in 30 days, so it has been labeled "stale-assigned".
If you are still working on the issue, please remove the label and add a
comment updating the community on your progress. If this issue is waiting on
feedback, please consider this a reminder to the committer/reviewer. Flink is a
very active project, and so we appreciate your patience.
If you are no longer working on the issue, please unassign yourself so someone
else may work on it.
> elasticsearch dynamic index support the use of proctime
> --------------------------------------------------------
>
> Key: FLINK-24571
> URL: https://issues.apache.org/jira/browse/FLINK-24571
> Project: Flink
> Issue Type: Improvement
> Components: Connectors / ElasticSearch
> Reporter: jinfeng
> Assignee: jinfeng
> Priority: Major
> Labels: pull-request-available, stale-assigned
>
> When use eleasticsearch dynamic index, we must special a field. If there is
> no time-attribute field, we can't use dynamic index. so support dynamic
> index using proctime may be a good choice.
> Before implement this feature, we should discuss the proctime index pattern.
>
> The current dynamic index is :
> {code:sql}
> Create table esSink (
> f1 timestamp(3)
> ) with (
> 'index' = 'myusers_{f1|yyyy-MM-dd}'
> );
> {code}
> When using proctime as dynamic index, It would be like this.
> {code:sql}
> Create table esSink (
> f1 varchar
> ) with (
> 'index' = 'myusers_{|yyyy-MM-dd}'
> );
> {code}
> When field name is not specified, we use proctime to generate the dynamic
> index.
--
This message was sent by Atlassian Jira
(v8.20.1#820001)