-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support Create/Drop/Show/Refresh Index Syntax for Spark SQL
- Loading branch information
Showing
11 changed files
with
896 additions
and
5 deletions.
There are no files selected for viewing
117 changes: 117 additions & 0 deletions
117
hudi-common/src/main/java/org/apache/hudi/common/index/SecondaryIndex.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.hudi.common.index; | ||
|
||
import java.util.Arrays; | ||
import java.util.Map; | ||
|
||
public class SecondaryIndex { | ||
private String indexName; | ||
private String[] colNames; | ||
private SecondaryIndexType indexType; | ||
private Map<String, Map<String, String>> colOptions; | ||
private Map<String, String> options; | ||
|
||
public SecondaryIndex() { | ||
} | ||
|
||
public SecondaryIndex( | ||
String indexName, | ||
String[] colNames, | ||
SecondaryIndexType indexType, | ||
Map<String, Map<String, String>> colOptions, | ||
Map<String, String> options) { | ||
this.indexName = indexName; | ||
this.colNames = colNames; | ||
this.indexType = indexType; | ||
this.colOptions = colOptions; | ||
this.options = options; | ||
} | ||
|
||
public String getIndexName() { | ||
return indexName; | ||
} | ||
|
||
public String[] getColNames() { | ||
return colNames; | ||
} | ||
|
||
public SecondaryIndexType getIndexType() { | ||
return indexType; | ||
} | ||
|
||
public Map<String, Map<String, String>> getColOptions() { | ||
return colOptions; | ||
} | ||
|
||
public Map<String, String> getOptions() { | ||
return options; | ||
} | ||
|
||
public static Builder builder() { | ||
return new Builder(); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "SecondaryIndex{" | ||
+ "indexName='" + indexName + '\'' | ||
+ ", colNames='" + Arrays.toString(colNames) + '\'' | ||
+ ", indexType=" + indexType | ||
+ ", colOptions=" + colOptions | ||
+ ", options=" + options | ||
+ '}'; | ||
} | ||
|
||
public static class Builder { | ||
private String indexName; | ||
private String[] colNames; | ||
private SecondaryIndexType indexType; | ||
private Map<String, Map<String, String>> colOptions; | ||
private Map<String, String> options; | ||
|
||
public Builder setIndexName(String indexName) { | ||
this.indexName = indexName; | ||
return this; | ||
} | ||
|
||
public Builder setColNames(String[] colNames) { | ||
this.colNames = colNames; | ||
return this; | ||
} | ||
|
||
public Builder setIndexType(String indexType) { | ||
this.indexType = SecondaryIndexType.of(indexType); | ||
return this; | ||
} | ||
|
||
public Builder setColOptions(Map<String, Map<String, String>> colOptions) { | ||
this.colOptions = colOptions; | ||
return this; | ||
} | ||
|
||
public Builder setOptions(Map<String, String> options) { | ||
this.options = options; | ||
return this; | ||
} | ||
|
||
public SecondaryIndex build() { | ||
return new SecondaryIndex(indexName, colNames, indexType, colOptions, options); | ||
} | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
hudi-common/src/main/java/org/apache/hudi/common/index/SecondaryIndexType.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.hudi.common.index; | ||
|
||
import org.apache.hudi.exception.HoodieSecondaryIndexException; | ||
|
||
import java.util.Arrays; | ||
|
||
public enum SecondaryIndexType { | ||
LUCENE((byte) 1); | ||
|
||
private final byte type; | ||
|
||
SecondaryIndexType(byte type) { | ||
this.type = type; | ||
} | ||
|
||
public byte getValue() { | ||
return type; | ||
} | ||
|
||
public static SecondaryIndexType of(byte indexType) { | ||
return Arrays.stream(SecondaryIndexType.values()) | ||
.filter(t -> t.type == indexType) | ||
.findAny() | ||
.orElseThrow(() -> | ||
new HoodieSecondaryIndexException("Unknown secondary index type:" + indexType) | ||
); | ||
} | ||
|
||
public static SecondaryIndexType of(String indexType) { | ||
return Arrays.stream(SecondaryIndexType.values()) | ||
.filter(t -> t.name().equals(indexType.toUpperCase())) | ||
.findAny() | ||
.orElseThrow(() -> | ||
new HoodieSecondaryIndexException("Unknown secondary index type:" + indexType) | ||
); | ||
} | ||
} |
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
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
30 changes: 30 additions & 0 deletions
30
hudi-common/src/main/java/org/apache/hudi/exception/HoodieSecondaryIndexException.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.hudi.exception; | ||
|
||
public class HoodieSecondaryIndexException extends HoodieException { | ||
public HoodieSecondaryIndexException(String message) { | ||
super(message); | ||
} | ||
|
||
public HoodieSecondaryIndexException(String message, Throwable t) { | ||
super(message, t); | ||
} | ||
} |
Oops, something went wrong.