Github user ericl commented on a diff in the pull request:

    https://github.com/apache/spark/pull/15539#discussion_r84159294
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/FileStatusCache.scala
 ---
    @@ -0,0 +1,82 @@
    +/*
    + * 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.spark.sql.execution.datasources
    +
    +import java.util.concurrent.ConcurrentHashMap
    +
    +import org.apache.hadoop.fs.{FileStatus, Path}
    +
    +import org.apache.spark.metrics.source.HiveCatalogMetrics
    +import org.apache.spark.util.SerializableConfiguration
    +
    +/**
    + * A cache of the leaf files of partition directories. We cache these 
files in order to speed
    + * up iterated queries over the same set of partitions. Otherwise, each 
query would have to
    + * hit remote storage in order to gather file statistics for physical 
planning.
    + *
    + * Each resolved catalog table has its own FileStatusCache. When the 
backing relation for the
    + * table is refreshed via refreshTable() or refreshByPath(), this cache 
will be invalidated.
    + */
    +abstract class FileStatusCache {
    --- End diff --
    
    There's some extra complexity here since each table has its own cache, so 
you could still exceed the amount of available memory if there were multiple 
tables.
    
    Some options here:
    1) A large shared cache that includes table name in the key
    2) Pick an arbitrary size limit for each table cache
    3) Do nothing


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to