-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for custom date formats and OpenSearch date formats for date fields as part of Lucene query #2762
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,19 +62,23 @@ public String toString() { | |
@EqualsAndHashCode.Exclude @Getter protected MappingType mappingType; | ||
|
||
// resolved ExprCoreType | ||
protected ExprCoreType exprCoreType; | ||
@Getter protected ExprCoreType exprCoreType; | ||
|
||
/** | ||
* Get a simplified type {@link ExprCoreType} if possible. To avoid returning `UNKNOWN` for | ||
manasvinibs marked this conversation as resolved.
Show resolved
Hide resolved
|
||
* `OpenSearch*Type`s, e.g. for IP, returns itself. | ||
* `OpenSearch*Type`s, e.g. for IP, returns itself. If the `exprCoreType` is {@link | ||
* ExprCoreType#DATE}, {@link ExprCoreType#TIMESTAMP}, {@link ExprCoreType#TIME}, or {@link | ||
* ExprCoreType#UNKNOWN}, it returns the current instance; otherwise, it returns `exprCoreType`. | ||
* | ||
* @return An {@link ExprType}. | ||
*/ | ||
public ExprType getExprType() { | ||
if (exprCoreType != ExprCoreType.UNKNOWN) { | ||
return exprCoreType; | ||
} | ||
return this; | ||
return (exprCoreType == ExprCoreType.DATE | ||
|| exprCoreType == ExprCoreType.TIMESTAMP | ||
|| exprCoreType == ExprCoreType.TIME | ||
|| exprCoreType == ExprCoreType.UNKNOWN) | ||
? this | ||
: exprCoreType; | ||
} | ||
|
||
/** | ||
|
@@ -230,6 +234,9 @@ public String legacyTypeName() { | |
if (mappingType == null) { | ||
return exprCoreType.typeName(); | ||
} | ||
if (mappingType.toString().equalsIgnoreCase("DATE")) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. change to mappingType == Date? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we check mappingType == DateNanos either? if (mappingType == Date || mappingType == DateNanos) { |
||
return exprCoreType.typeName(); | ||
} | ||
manasvinibs marked this conversation as resolved.
Show resolved
Hide resolved
|
||
return mappingType.toString().toUpperCase(); | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,16 @@ | |
import static org.opensearch.sql.data.type.ExprCoreType.TIME; | ||
import static org.opensearch.sql.data.type.ExprCoreType.TIMESTAMP; | ||
|
||
import java.time.ZoneOffset; | ||
import java.time.ZonedDateTime; | ||
import java.time.temporal.TemporalAccessor; | ||
import java.util.List; | ||
import java.util.Objects; | ||
import java.util.stream.Collectors; | ||
import java.util.stream.Stream; | ||
import lombok.EqualsAndHashCode; | ||
import org.opensearch.common.time.DateFormatter; | ||
import org.opensearch.common.time.DateFormatters; | ||
import org.opensearch.common.time.FormatNames; | ||
import org.opensearch.sql.data.type.ExprCoreType; | ||
import org.opensearch.sql.data.type.ExprType; | ||
|
@@ -137,6 +142,11 @@ public class OpenSearchDateType extends OpenSearchDataType { | |
|
||
private static final String CUSTOM_FORMAT_DATE_SYMBOLS = "FecEWwYqQgdMLDyuG"; | ||
|
||
private static final List<DateFormatter> OPENSEARCH_DEFAULT_FORMATTERS = | ||
Stream.of("strict_date_time_no_millis", "strict_date_optional_time", "epoch_millis") | ||
.map(DateFormatter::forPattern) | ||
.toList(); | ||
|
||
@EqualsAndHashCode.Exclude private final List<String> formats; | ||
|
||
private OpenSearchDateType() { | ||
|
@@ -235,6 +245,59 @@ public List<DateFormatter> getAllCustomFormatters() { | |
.collect(Collectors.toList()); | ||
} | ||
|
||
/** | ||
* Retrieves a list of custom formatters and OpenSearch named formatters defined by the user, and | ||
* attempts to parse the given date/time string using these formatters. | ||
* | ||
* @param dateTime The date/time string to parse. | ||
* @return A ZonedDateTime representing the parsed date/time in UTC, or null if parsing fails. | ||
*/ | ||
public ZonedDateTime getParsedDateTime(String dateTime) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we should not choose dateFormatter based on input dateTime. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, can you help me understand more here? In this logic, I'm parsing the input string to date object using OpenSearch field dateFormatters. If we don't want to do this, then we won't be able to parse input string such as There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Synced offline with @penghuo to keep the parsing date string to date object using OpenSearch dateFormatter logic as it is but to move formatting date string logic to Term/Range query when needed. |
||
List<DateFormatter> dateFormatters = | ||
Stream.concat(this.getAllNamedFormatters().stream(), this.getAllCustomFormatters().stream()) | ||
.collect(Collectors.toList()); | ||
ZonedDateTime zonedDateTime = null; | ||
|
||
// check if dateFormatters are empty, then set default ones | ||
if (dateFormatters.isEmpty()) { | ||
dateFormatters = OPENSEARCH_DEFAULT_FORMATTERS; | ||
} | ||
// parse using OpenSearch DateFormatters | ||
for (DateFormatter formatter : dateFormatters) { | ||
try { | ||
TemporalAccessor accessor = formatter.parse(dateTime); | ||
zonedDateTime = DateFormatters.from(accessor).withZoneSameLocal(ZoneOffset.UTC); | ||
break; | ||
} catch (IllegalArgumentException ignored) { | ||
// nothing to do, try another format | ||
} | ||
} | ||
return zonedDateTime; | ||
} | ||
|
||
/** | ||
* Returns a formatted date string using the internal formatter, if available. | ||
* | ||
* @param accessor The TemporalAccessor object containing the date/time information. | ||
* @return A formatted date string if a formatter is available, otherwise null. | ||
*/ | ||
public String getFormattedDate(TemporalAccessor accessor) { | ||
if (hasNoFormatter()) { | ||
return OPENSEARCH_DEFAULT_FORMATTERS.get(0).format(accessor); | ||
} | ||
// Use the first available format string to create the formatter | ||
return DateFormatter.forPattern(this.formats.get(0)).format(accessor); | ||
penghuo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
/** | ||
* Checks if the formatter is not initialized. | ||
* | ||
* @return True if the formatter is not set, otherwise false. | ||
*/ | ||
public boolean hasNoFormatter() { | ||
return this.formats.isEmpty(); | ||
} | ||
|
||
/** | ||
* Retrieves a list of named formatters that format for dates. | ||
* | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
term query and range query is OpenSearch concept, there is not function / operator in SQL is term/range.