You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2021/04/29 06:24:41 UTC

[GitHub] [ignite-3] vldpyatkov commented on a change in pull request #91: IGNITE-14077: Distributed schema manager.

vldpyatkov commented on a change in pull request #91:
URL: https://github.com/apache/ignite-3/pull/91#discussion_r622764406



##########
File path: modules/table/src/main/java/org/apache/ignite/internal/table/schema/TableSchemaManagerImpl.java
##########
@@ -0,0 +1,116 @@
+/*
+ * 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.ignite.internal.table.schema;
+
+import java.util.List;
+import org.apache.ignite.internal.schema.Column;
+import org.apache.ignite.internal.schema.SchemaDescriptor;
+import org.apache.ignite.internal.table.TableSchemaManager;
+
+/**
+ * Table schema manager component.
+ */
+public class TableSchemaManagerImpl implements TableSchemaManager {

Review comment:
       It looks like a per table class.
   But the manager it is a reserved term for node component.
   In other word a schema manager should be the component who serves all tables.
   Look at the main branch, is was renamed to `TableSchemaView`:
   https://github.com/apache/ignite-3/blame/main/modules/table/src/main/java/org/apache/ignite/internal/table/TableSchemaView.java




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org